├── .gitignore ├── 3D vision ├── 3d_vision.pdf ├── 3d_vision.tex ├── images │ ├── camera_fig_6_1.pdf │ ├── camera_fig_6_1.svg │ ├── epipolar_fig_9_1.pdf │ └── epipolar_fig_9_1.svg └── plots │ ├── 3d.pdf │ └── 3d.tex ├── AI ├── AI.pdf └── AI.tex ├── Algorithm ├── Algorithm.pdf └── Algorithm.tex ├── DIP ├── DIP.pdf └── DIP.tex ├── DSP ├── DSP.pdf └── DSP.tex ├── README.md ├── advance vision ├── advance_vision.pdf └── advance_vision.tex ├── cheat.cls ├── pattern ├── pattern.pdf ├── pattern.tex └── plots │ ├── gaussian_2d - Copy.tex │ ├── gaussian_2d.pdf │ ├── gaussian_2d.tex │ ├── gaussian_3d.pdf │ └── gaussian_3d.tex └── statistics ├── Statistics.pdf └── Statistics.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/.gitignore -------------------------------------------------------------------------------- /3D vision/3d_vision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/3d_vision.pdf -------------------------------------------------------------------------------- /3D vision/3d_vision.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/3d_vision.tex -------------------------------------------------------------------------------- /3D vision/images/camera_fig_6_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/images/camera_fig_6_1.pdf -------------------------------------------------------------------------------- /3D vision/images/camera_fig_6_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/images/camera_fig_6_1.svg -------------------------------------------------------------------------------- /3D vision/images/epipolar_fig_9_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/images/epipolar_fig_9_1.pdf -------------------------------------------------------------------------------- /3D vision/images/epipolar_fig_9_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/images/epipolar_fig_9_1.svg -------------------------------------------------------------------------------- /3D vision/plots/3d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/plots/3d.pdf -------------------------------------------------------------------------------- /3D vision/plots/3d.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/3D vision/plots/3d.tex -------------------------------------------------------------------------------- /AI/AI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/AI/AI.pdf -------------------------------------------------------------------------------- /AI/AI.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/AI/AI.tex -------------------------------------------------------------------------------- /Algorithm/Algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/Algorithm/Algorithm.pdf -------------------------------------------------------------------------------- /Algorithm/Algorithm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/Algorithm/Algorithm.tex -------------------------------------------------------------------------------- /DIP/DIP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/DIP/DIP.pdf -------------------------------------------------------------------------------- /DIP/DIP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/DIP/DIP.tex -------------------------------------------------------------------------------- /DSP/DSP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/DSP/DSP.pdf -------------------------------------------------------------------------------- /DSP/DSP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/DSP/DSP.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/README.md -------------------------------------------------------------------------------- /advance vision/advance_vision.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/advance vision/advance_vision.pdf -------------------------------------------------------------------------------- /advance vision/advance_vision.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/advance vision/advance_vision.tex -------------------------------------------------------------------------------- /cheat.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/cheat.cls -------------------------------------------------------------------------------- /pattern/pattern.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/pattern.pdf -------------------------------------------------------------------------------- /pattern/pattern.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/pattern.tex -------------------------------------------------------------------------------- /pattern/plots/gaussian_2d - Copy.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/plots/gaussian_2d - Copy.tex -------------------------------------------------------------------------------- /pattern/plots/gaussian_2d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/plots/gaussian_2d.pdf -------------------------------------------------------------------------------- /pattern/plots/gaussian_2d.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/plots/gaussian_2d.tex -------------------------------------------------------------------------------- /pattern/plots/gaussian_3d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/plots/gaussian_3d.pdf -------------------------------------------------------------------------------- /pattern/plots/gaussian_3d.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/pattern/plots/gaussian_3d.tex -------------------------------------------------------------------------------- /statistics/Statistics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/statistics/Statistics.pdf -------------------------------------------------------------------------------- /statistics/Statistics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ma-mehralian/cheat_sheets/HEAD/statistics/Statistics.tex --------------------------------------------------------------------------------