Skip to content

Instantly share code, notes, and snippets.

View yokeshrana's full-sized avatar
🏠
Working from home

Yokesh Rana yokeshrana

🏠
Working from home
View GitHub Profile
@yokeshrana
yokeshrana / readimage.py
Last active March 28, 2021 16:05
Reading images Using OpenCV
import cv2
img = cv2.imread("Resources/lena.png")
cv2.imshow("Picture",img)
cv2.waitKey(3000) # Define the time until it is visible
@yokeshrana
yokeshrana / readvideo.py
Created March 8, 2021 08:55
Reading Video using Opencv
import cv2
vid = cv2.VideoCapture("Resources/test_video.mp4")
#since video is stream of pictures we have to use something else here
while True:
success,img=vid.read()
if success:
cv2.imshow("Video", img)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
@yokeshrana
yokeshrana / vim-enhanced
Last active December 13, 2023 09:14
Customising vim for Mac OS (Big Sur)
1 :: Install Latest Cmake (Using the office dmg )
https://cmake.org/download/
Configure the paths for the cmake using the below command
sudo "/Applications/CMake.app/Contents/bin/cmake-gui" --install
2 :: Default mac os vim lacks python3 support and many other features ,so we will be compiling vim with full features(can limit if u want)
Verify first if Xcode developers tools are installed or not ,if not this will install it in mac
xcode-select --install
Now lets just move on to compiling vim from source on our distribution.
mkdir -p .vim/src