Ask Your Question

Ziri's profile - activity

2020-09-13 13:10:09 -0600 received badge  Student (source)
2019-11-30 01:32:26 -0600 received badge  Necromancer (source)
2019-11-27 02:47:43 -0600 commented answer Detect valve position without colors on a video

Take a look at the generalize hough for edge based template matching . you can also try SIFT

2019-11-27 02:47:06 -0600 commented answer Detect valve position without colors on a video

Take a look to the generalize hough for edge based template matching . you can also try SIFT

2019-11-27 02:45:32 -0600 edited answer Detect valve position without colors on a video

This is not an opencv problem ... you'll need some edge based template matching (rotation invariant). If your camera is

2019-11-27 01:52:26 -0600 answered a question Detect valve position without colors on a video

This is not an opencv problem ... you'll need some edge based template matching (rotation invarinate). If your camera is

2019-11-27 01:26:21 -0600 commented question How can i detect trees in Aerial Images?

Did you run any "Unet" program ? The output should look something like that.

2019-11-22 02:44:02 -0600 commented question How can i detect trees in Aerial Images?

Search for annotation tools online - > the goal is to have 2 images 1 is the original and the second is the a binary

2019-11-22 02:27:10 -0600 commented question How can i detect trees in Aerial Images?

If you use Unet you' ll be able to get the tress as 1 segment ; you'll be able to get their borders& position(centr

2019-11-22 02:26:16 -0600 commented question How can i detect trees in Aerial Images?

If you use Unet you' ll be able to get the tress as 1 segment ; you'll be able to get their border& position(centro

2019-11-21 19:37:36 -0600 commented question Finding length of specific lines in bee wing

I hope you have high resolution images like the second one. To make it simple i would run an edge detection/contour de

2019-11-21 19:06:19 -0600 commented question Treating broken characters in image to improve OCR accuracy

You can threshold to separate them then create you own OCR version by training those images. (Or retrain tesseract).

2019-11-21 18:54:26 -0600 commented question Extract object and save it as an image.png using c++

If you've successfully ran that code check blob.h and track where void calculate_blob_center() or get_rect() are ca

2019-11-21 18:29:18 -0600 commented question setUseOptimized()

You'll need set it as a global variable in the top level of your application : Check documentation here: setUseOptimiz

2019-11-21 18:27:39 -0600 commented question How can i detect trees in Aerial Images?

This is a segmentation task and it seems like deep learning "Unet" gives good results in this case. you can check an ex

2019-11-21 18:23:02 -0600 commented question How can i detect trees in Aerial Images?

This is a segmentation task and it seems like deep learning "Unet" gives good results in this case. you can check an ex

2019-11-21 18:15:14 -0600 commented question setUseOptimized()

You'll need set it as a global variable in the top level of your application link text

2019-11-21 03:14:31 -0600 commented question How can i detect trees in Aerial Images?

Do you have images database you want to detect trees in ?

2019-11-21 03:07:43 -0600 commented question Extract object and save it as an image.png using c++

You already have the car detection routine ? has bounding boxes ? you can copy the bounding box ROI and save it .

2019-11-21 02:58:08 -0600 commented question Determine available space inside a trailer using hd camera

You just need Calibration ( Detect some key points (corners for example) and transform from pixel to world ) + some

2019-11-21 02:48:58 -0600 commented question Determine available space inside a trailer using hd camera

You just need Calibration ( Detect some key points (corners for example) and transform from pixel to world ) + some

2019-07-24 04:13:50 -0600 commented answer 4K VideoCapture very slow on Windows compared to MS Camera App

did you try opening the video without setting any parameters? You can use Gstreamer in Windows Installing on Windows

2019-07-24 03:45:59 -0600 commented question Remove black spots + noise & just keep Numbers?

You have to post your original image before binarizing .

2019-07-24 03:42:41 -0600 edited answer how to enhance text in this image

Try Contrast Limited Adaptive Histogram Equalization CLAHE before thresholding.

2019-07-24 03:41:44 -0600 answered a question how to enhance text in this image

Try Contrast Limited Adaptive Histogram Equalization CLAHE before threshing.

2019-07-24 03:21:28 -0600 answered a question 4K VideoCapture very slow on Windows compared to MS Camera App

I am not sure why are you setting these parameters after opening the video : capture.set(cv::CAP_PROP_FOURCC, cv::Video

2018-08-31 03:25:13 -0600 answered a question findContour() detect unintended internal edges and calculates area wierd for them

You don't have to use : cannyImg = cv2.Canny(dialeteImg, 100,200) Just find contours in the binary image then filter

2018-08-31 02:32:03 -0600 answered a question Circle detection

I Suggest this method : 1 ) - as @StevenPuttemns suggested, use watershed or another method to get individual contour

2018-08-31 02:24:25 -0600 answered a question Detecting Percentage of Red ,Green , Blue ,Cyan , Magenta , Yellow

IF you want to check the percentage of the color red(R=255 , G = 0 , B = 0) the count pixels and calculate the ratio.. b

2018-08-21 23:25:24 -0600 commented question erasing the rectangle drawn in image

To achieve that you'll need to draw on transparent overlay image instead.

2018-07-10 04:47:54 -0600 commented question Can an Integral Image assist in producing histograms?

That makes sense now.

2018-07-10 04:16:37 -0600 commented question Can an Integral Image assist in producing histograms?

Where did you find about: "considering only the 4 corners of an ROI to calculate the mean?"

2018-07-10 04:04:03 -0600 commented question Finding segment length

Accumulate those segments using 2 constraints ( parallelism & distance) OR Collinearity you'll get complete segments

2018-07-10 04:02:13 -0600 commented question Finding segment length

Accumulate those segments using 2 constraints ( parallelism & distance) you'll get complete segments. Then use simpl

2018-07-10 03:45:13 -0600 commented question Better way to Drawing contour line

I think you're not using Background subtraction the right way. And if you want to use the fixed threshold you'll have t

2018-07-06 04:25:23 -0600 commented question Debugging OpenCV DLL used by Executable

Thanks . I didn't know that.

2018-07-06 04:20:03 -0600 answered a question How do I keep an object in the same place?

Use findHomography to get the right transformation matrix.

2018-07-06 03:49:46 -0600 commented answer Segmenting an image with similar background color.

For testing... don't train from scratch. Fine-tune an existing model.

2018-07-06 03:43:57 -0600 commented answer Segmenting an image with similar background color.

You can create large data by changing images you have ( contrast chnage , rotation , translation ...etc)

2018-07-06 03:38:21 -0600 answered a question Segmenting an image with similar background color.

You can try converting your image into different color spaces and threshold using 3 channels... But if you want more p

2018-07-06 03:32:10 -0600 commented question extraction of a rectangle

The simplest way to do it is to Color threshold (for example) -> extract the blobs -> delete noise -> and find

2018-07-06 03:30:47 -0600 commented question extraction of a rectangle

The simplest way to do it is to Color threshold (for example) -> extract the blobs -> delete noise -> and find

2018-06-07 11:16:04 -0600 received badge  Necromancer (source)
2018-01-12 03:42:38 -0600 commented answer How to calculate the distance that from the pixel to image edges

You need 2 point coordinates from your line or segment and your single point coordinates --> then use dot product f

2018-01-12 03:28:14 -0600 answered a question background color affecting contour detection

I suggest using DOG or Variance filter to ignore background variation.

2018-01-12 03:16:59 -0600 answered a question Detect replicating pattern in grid images

Convert your image to HSV or HSL and do simple color thresholding in all 3 channels. If itdoesn't work then segment usi

2017-11-14 05:30:17 -0600 commented question HoughLinesP not able to detect lines

you'll be able to do the same with Hough but tuning parameters for different cases is difficult.

2017-11-14 05:28:50 -0600 commented question HoughLinesP not able to detect lines

If you detect contours as a tree with RETR_TREE your triangle becomes a hole. (check contour Hierarchy) you'll also nee

2017-11-14 04:21:26 -0600 commented question HoughLinesP not able to detect lines

If your purpose is detecting (rectangle with triangle) then doing contour analysis and detecting shapes is better for th

2017-11-13 22:47:59 -0600 commented question Weak edge(Curve) detection in low contrast (Update)

Hi , I added original image (curve shape and orientation are random ) . Thank you.