Pritesh Gohil
- Finding and installing missing packages in LaTeX in Ubuntu
- Mathematics for robotics and control important links
- How to write markdown file
- New to computer science? Explore the options here
- Jupyter kernal is not strating after installing the anaconda in Ubuntu 16.04
- An introduction to Anaconda: what is it, and how to install it in ubuntu
- Resolve conflict between ROS python2.x and OpenCv python3.x
- Computer vision techniques that you might need to work with vision
- Books that I read other than educational
- Free image and video editing online tools
- Evaluation Metrics for 2D Object Detection
- Software Engineering
Finding specific string and folder in linux
Find folder or file name: case sensitibe find . -name "folder name"
& case insensitive find . -iname "folder name"
Find file containing specific string: grep -Ril "text-to-find-here" /
Use ‘/’ to search from root, or ‘.’ to search from current directory
Linux development Environment of 2018 by Bruno Paz
New to the ubuntu or still looking for some of the best tools to let your work done? Have a quick look at here save tons of time in finding right tools Check his article here
Convert colour image to gray in linux
This is simple command line argument to convert image into grayscale.
convert -colorspace gray relu.png relu_BW.png
Get selected pages from pdf
First install pdftk software
sudo apt install pdftk
To create pdf from pages 5 to 20 from report.pdf pdftk report.pdf cat 5-20 output Review_pages.pdf
To create pdf from page (5, 10, 15-20) from report.pdf pdftk report.pdf cat 5 10 15-20 output Review_pages.pdf
Notes on Remote sensing
http://wtlab.iis.u-tokyo.ac.jp/wataru/lecture/rsgis/rsnote/contents.htm
Very Intuitive visualization of object detection IoU and GIoU.
https://giou.stanford.edu/