Ask Your Question

salmaUCP's profile - activity

2020-12-02 23:43:22 -0600 edited question opencv-python:Using Opencv my WebCam is not open

opencv-python:Using Opencv my WebCam is not open Hey! I found this warning [ WARN:0] global C:\Users\appveyor\AppData

2020-12-02 23:41:46 -0600 edited question opencv-python:Using Opencv my WebCam is not open

opencv-python:Opencv Module error(WebCam is not open) Hey! I found this warning [ WARN:0] global C:\Users\appveyor\Ap

2020-12-02 23:40:50 -0600 asked a question opencv-python:Using Opencv my WebCam is not open

opencv-python:Opencv Module error(WebCam is not open) Hey! I found this warning [ WARN:0] global C:\Users\appveyor\Ap

2020-10-16 06:20:49 -0600 edited question opencv-python:how to extract max black part from image.

opencv-python:how to remove max black part from image I want to save max black part from this image just like the requir

2020-10-16 06:19:36 -0600 asked a question opencv-python:how to extract max black part from image.

opencv-python:how to remove max black part from image I want to save max black part from this image just like the requir

2020-10-13 22:51:18 -0600 edited question opencv-python how to remove these black pixels from number plate.

opencv-python how to remove these black pixels from number plate. I want to remove small black pixels from this number p

2020-10-13 22:46:56 -0600 asked a question opencv-python how to remove these black pixels from number plate.

opencv-python how to remove these black pixels from number plate. I want to remove small black pixels from this number p

2020-10-04 12:18:33 -0600 commented answer python: How to Crop White region from Number Plate image??

Thank You! it would be really helpful for me...!

2020-10-04 12:04:49 -0600 marked best answer python: How to Crop White region from Number Plate image??

Hey I want to crop white region from image and show the characters written in white region on screen. Here is my code

import cv2
import imutils
# Read input image
img = cv2.imread(r'111.jpg')
hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
s = hsv[:, :, 2]#saturation
cv2.imshow("HSV Image", hsv)#hsv
cv2.waitKey(0)
cv2.imshow("Saturated Image", s)
cv2.waitKey(0)
ret, thresh = cv2.threshold(s, 0, 255, cv2.THRESH_BINARY+cv2.THRESH_OTSU) #threshold
cv2.imshow("threshold Image", thresh)
cv2.waitKey(0)
cnts = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)#contors find
cnts = imutils.grab_contours(cnts)
# print(cnts)
c = max(cnts, key=cv2.contourArea)
cv2.drawContours(img, cnts, -1, (255, 0, 0), 2)
x, y, w, h = cv2.boundingRect(c)
out = img[y:y+h, x:x+w, :].copy()
# print(out) 
cv2.imshow('crop',out)
cv2.imwrite('tryv.jpg',out)
cv2.waitKey(0)

Here is the image Image

Here out variable have to show the crop image (without green region area) Kindly Guide me how to solve this problem.

2020-10-04 09:20:36 -0600 received badge  Supporter (source)
2020-10-04 03:31:51 -0600 asked a question python: How to Crop White region from Number Plate image??

python: How to Crop White region from Number Plate image?? Hey I want to crop white region from image and show the chara

2020-04-27 09:36:22 -0600 commented question Python- How to display Open CV Frame on Browser???

Here is my Code. I want to Show the Frame of Open CV on Browser...

2020-04-27 09:35:30 -0600 asked a question Python- How to display Open CV Frame on Browser???

Python- How to display Open CV Frame on Browser??? def Recognize(): if request.method == 'POST': # i = request.form[

2020-03-30 05:57:18 -0600 edited question Python- how to crop and save human detected frames in a video??

Python- how to crop and save human detected frames in a video?? imports libraries import os import tensorflow

2020-03-30 05:56:37 -0600 asked a question Python- how to crop and save human detected frames in a video??

Python- how to crop and save human detected frames in a video?? imports libraries import os import tensorflow

2020-03-30 05:20:36 -0600 received badge  Enthusiast
2020-03-30 05:20:36 -0600 received badge  Enthusiast
2020-03-26 05:29:48 -0600 marked best answer How to crop human detected frame from live video.

I have already done human detection but don't know how to crop detected frames of video and save it in video format... here is the code link which i followed https://github.com/ambakick/Person-De...

Plz suggest me !!! Thanks

2020-03-26 05:29:48 -0600 received badge  Scholar (source)
2020-03-26 05:20:20 -0600 commented answer How to crop human detected frame from live video.

thank you so much @berak

2020-03-26 04:57:47 -0600 received badge  Editor (source)
2020-03-26 04:57:47 -0600 edited question how to crop the live video feed to only show the area that the rectangle encompasses?

how to crop the live video feed to only show the area that the rectangle encompasses? I have a live video feed that trac

2020-03-26 04:33:14 -0600 asked a question how to crop the live video feed to only show the area that the rectangle encompasses?

how to crop the live video feed to only show the area that the rectangle encompasses? I have a live video feed that trac

2020-03-26 04:21:57 -0600 commented question How to crop human detected frame from live video.

Thanks for your reply & I will be definitely search your suggestion on google but i want to crop human detected fra

2020-03-25 16:06:33 -0600 asked a question How to crop human detected frame from live video.

How to crop human detected frame from live video. I have already done human detection but don't know how to crop detecte

2020-03-25 16:02:50 -0600 commented answer Crop ROI from Face-Eye detection

okay thanks!

2020-03-25 13:51:56 -0600 commented answer Crop ROI from Face-Eye detection

can you please suggest me something???

2020-03-25 13:51:09 -0600 commented answer Crop ROI from Face-Eye detection

can you please suggest me something???

2020-03-25 13:49:58 -0600 commented answer Crop ROI from Face-Eye detection

I just want to crop human detected frame from live video I have already done human detection but don't know how to crop

2020-03-25 09:23:08 -0600 commented answer Crop ROI from Face-Eye detection

How Can we crop same as Human Body by using the same code but i use haarcascade_fullbody.xml instead of eyes??? Is it s

2020-03-23 09:43:47 -0600 commented question Need help in showing open cv output frame in browser

Okay Thank You!

2020-03-23 09:42:30 -0600 asked a question Is there any way to crop frame in video and then make another video using OpenCV???

Is there any way to crop frame in video and then make another video using OpenCV??? Hey, I have done Person object detec

2020-02-05 01:39:54 -0600 asked a question Need help in showing open cv output frame in browser

Need help in showing open cv output frame in browser Hey I want to show the open cv frame output in window of browser. I