Skip to content

Instantly share code, notes, and snippets.

@seaside2mm
seaside2mm / transformation.md
Last active December 16, 2022 09:22
[camera] #cv

2D

*单应(Homography)变换 **

3D

**射影(Projective)变换 **

@seaside2mm
seaside2mm / Mat.md
Last active November 12, 2022 06:30
[opencv] #cv

TYPE CV_8U: 8-bit unsigned integer (uchar) CV_8S: 8-bit signed integer (schar) CV_16U: 16-bit unsigned integer (ushort) CV_16S; 16-bit signed integer (short) CV_32S: 32-bit signed integer (int) CV_32F: 32-bit floating-point number (float) CV_64F: 64-bit floating-point number (double)

@seaside2mm
seaside2mm / hardware.md
Last active November 2, 2022 07:41
[硬件加速] #dl

NVIDIA Jetson AGX Xavier

Deep Learning Accelerator (DLA)

not as fast as the GPU but is extremely power efficient

  • Convolution Core accelerates various convolutional layers. (equivalent to nn.Conv2d in PyTorch)
  • Single Data Point Processor accelerates activation functions. It supports all commonly used activations like ReLU, PReLU, sigmoid, tanh and can even perform batch normalization and bias addition. (equivalent to nn.ReLU in PyTorch)
  • Planar Data Processor accelerates max-pooling and average pooling layers. (equivalent to nn.MaxPool2d in PyTorch)
@seaside2mm
seaside2mm / doc.md
Last active November 1, 2022 06:41
[AVP] #self-driving
@seaside2mm
seaside2mm / loftr.md
Last active November 9, 2022 08:02
[网络] #dl

‎‎​

@seaside2mm
seaside2mm / Using_Pytorch_ONNX.ipynb
Last active November 23, 2022 01:30
[模型部署方案] #dl
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
‎‎​
@seaside2mm
seaside2mm / doc.md
Last active May 31, 2022 13:59
[基础] #cv