Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
194 views

Tried to remove background from bill photo using OpenCvSharp GrabCut method: static Mat Grabcut(Mat imageMat) { Mat result = new(imageMat.Size(),MatType.CV_8UC1); OpenCvSharp.Rect rect = ...
Andrus's user avatar
  • 28.2k
0 votes
0 answers
95 views

I am new to OpenCV with linux. I am currently working on tube rack's bounding detection. But as you can see, one of rack's bounding is blurred by shadow. Despite having used histogram equalization to ...
Ethan Tang's user avatar
0 votes
0 answers
27 views

brightField CellI'm working on cell segmentation using Bright Field (BF) microscopy images, but I'm struggling due to uneven illumination and weak cell edges. To summarize, I’m stuck between two ...
최영환's user avatar
0 votes
3 answers
214 views

This is an example image of what i am trying to analyze: The yellow line is the line tool in imageJ. I would take a "plot profile" which would give me the value of the pixels over the line. ...
dartingeyes's user avatar
0 votes
2 answers
198 views

In thousands of grayscale satellite images I want to find the center coordinates and radius of the Earth’s edge. Hough Circle Transform in OpenCV doesn't work because of clouds and noise in the image. ...
icecream's user avatar
1 vote
0 answers
42 views

My topic is to determine sizes of rocks / stones with image processing and I need help with edge or contour detection (image segmentation) for these rock pictures. After contour detection, I will ...
Nazım Çimen's user avatar
1 vote
1 answer
234 views

I am working on an image processing task using opencv python where I need to segment individual rice grains from an image. The challenge is that many grains are overlapping with each other. Here is an ...
mj01's user avatar
  • 31
0 votes
1 answer
74 views

sample input image1 I would like to use computer vision to detect the edge like this image2 I wonder if there were some image process algorithms that could help me? Note that some image could be ...
Trí Lê Đình's user avatar
0 votes
0 answers
115 views

I am working on a project that renders the edge points of an image on an HTML canvas using JavaScript. Despite several optimizations, the performance is not ideal, especially when dealing with larger ...
Konan's user avatar
  • 1
1 vote
0 answers
46 views

I'm using fabric JS free drawing mode to generate a bunch of hand-drawn SVGs. I then composite these onto a canvas. I convert them to a bitmap Image for rendering so that I can easily union all of the ...
David Ferris's user avatar
  • 2,355
-1 votes
2 answers
133 views

I have a very noisy greyscale image where the noise level modulates along one axis. Within this image, there may be a very faint line of some unknown width. I want to be able to identify when this ...
Andrew DiFabbio's user avatar
0 votes
0 answers
131 views

Here is a generalized example of the house photo's I am referring to. I’m using OpenCV to detect and outline the roof of a house in a set of images by drawing contours around the roof edges. The issue ...
Luke's user avatar
  • 1
2 votes
1 answer
1k views

I'm having problems trying to detect edges in images corresponding to holes in a glass sample. Images look like this: images Single sample: Each image contains part of a hole that was cut into a ...
ladies's user avatar
  • 23
2 votes
1 answer
218 views

Hi I'm quite new in OpenCV, I am currently trying to detect horizontal lines in an image using HoughLinesP function in opencv, in order to calculate the ratio between x and y. The line detection ...
by42's user avatar
  • 23
0 votes
0 answers
208 views

I want to create a die-cut sticker design. In my app, user should be able to upload any png file with transparent background. App should create double border around the image, to look like a die-cut ...
Dominik's user avatar
  • 111
-2 votes
2 answers
525 views

I am trying to detect the contour of the die edge in the picture, but there is an obstacle on the right top of the image. Original picture:https://pan.quark.cn/s/0cdf6fe9784f Whole dataset: https://...
cadd9's user avatar
  • 7
2 votes
0 answers
101 views

Background:I want to get the width of the hot steel by manipulating a row of pixel values ,such as the green line in the picture.This pixel value change has been processed to be between 0 and 255. ...
Mumu's user avatar
  • 49
0 votes
2 answers
66 views

I am learning flask, trying to write code for edge detection in an image, and let users upload the image, using flask. I believe I'm unable to upload the image correctly, it shows 'no file selected' ...
Sibtain's user avatar
0 votes
0 answers
407 views

I am doing this to apply Sobel edge detection to an image # Sobel edge detection grad_x = cv2.Sobel(blurred_image, cv2.CV_64F, 1, 0, ksize=3) grad_y = cv2.Sobel(blurred_image, cv2.CV_64F, 0, 1, ksize=...
RedRum69's user avatar
-1 votes
1 answer
124 views

I am trying to find the points representing the left and right edge of a road mask(binary image). I have tried using contour detection but it is giving contour of whole image(including upper and lower ...
Pratham's user avatar
1 vote
2 answers
268 views

I have a liquid bow wave that is recorded by a high-speed camera. This gives me a lot of images that I want to analyze automatically. I want to determine the outer contour of the liquid and preferably ...
Celotos's user avatar
  • 21
1 vote
2 answers
561 views

I'm trying to find the edges on satellite imagery. While I've tried using canny edge detection, I've found much better results by passing the imagery through a structured random forests model ...
ZArmstrong's user avatar
0 votes
1 answer
246 views

Hi Thanks for your attention, I'm trying to implement Harris Corner Detection Algorithm, and have been following the standard Algorithm given on most souces one of them being Wiki Page I follow all ...
Pawan Nirpal's user avatar
1 vote
0 answers
58 views

I have a group of images. Each image is a collage of multiple images. I want to extract all the smaller images from the collage. I have tried multiple edge detection algorithms. Please suggest an ...
Chaitanya Malhotra's user avatar
2 votes
1 answer
49 views

// Detect edges void edges(int height, int width, RGBTRIPLE image[height][width]) { // Copying RGBTRIPLE copy[height][width]; for (int i = 0; i < height; i++) { for (int j = ...
GreenIsLearningProgramming's user avatar
0 votes
0 answers
35 views

import os import cv2 import numpy as np import matplotlib.pyplot as plt from tensorflow.keras import layers, models from tensorflow.keras.optimizers import Adam # Define the Residual Block def ...
Ali Abosinnee's user avatar
0 votes
1 answer
32 views

I am trying to detect yellow colors from my usb camera image.i am using yellow mask to filter objects and draw rectangles around the found contours. If I save frame obtained from usb camera and then ...
Sk D's user avatar
  • 1
0 votes
1 answer
282 views

I'm working on surface roughness of an image, and I used the edge detection function from opencv, but it also detected the pores from the image. Is there a way to get rid of the pores? picture of ...
user347553's user avatar
0 votes
1 answer
97 views

I have the following image: I want to detect the edge of the document placed on the table in the image. I tried the following code (the earlier approaches are commented out). def detectDocEdge(...
Loma Harshana's user avatar
0 votes
0 answers
75 views

I am trying to get a geometrical representation of an image (ultimately into a WKT string, but any geometrical encoding is fine). I'm using OpenCV's Canny edge detection method to detect edges, and ...
DecafTron's user avatar
0 votes
1 answer
139 views

I'm working with the OpenCV library in Python and trying to detect the long and short edges of a rectangular shape in an image. I have used the Canny edge detector and then applied the Hough transform ...
bobackursat99's user avatar
3 votes
1 answer
207 views

I am trying to write computer vision code based on the OpenCV library in Python to detect horizontal lines with intensity close to background. See example of the image below. I have tried 2 ...
Igor's user avatar
  • 51
0 votes
0 answers
227 views

In my situation, I discovered the edges of an object that resembles a rectangle and has a shape similar to a rectangle. Now, when I take away the rectangular object, the edge takes on an ellipse shape....
Shanmathi K's user avatar
0 votes
0 answers
69 views

How can I remove the black background from this image and crop the label out? I tried edge detection, but I found that due to the target being only on the right side of the image, the boundary cannot ...
WenKui Sun's user avatar
0 votes
0 answers
284 views

I'm trying to use Canny edge detection algorithm in python(newbie) for daily fields of temperature data on cartesian coordinates. For example Temperature= size(X,Y,time), 365 days of temperature data ...
user2721844's user avatar
1 vote
1 answer
263 views

i want to use the terra::focal() with an even sided matrix (e.g. to apply "Roberts cross" edge detection; https://en.wikipedia.org/wiki/Roberts_cross). However, focal() only accepts windows ...
JFV's user avatar
  • 15
1 vote
2 answers
152 views

I've an almost semicircular object in a grayscale image for which I intend to create a mask. I've tried some preprocessing + edge detections + filtering. however, there are still some irregularities . ...
Eagle186f's user avatar
3 votes
1 answer
351 views

I want to find the dark gray diagonal line in this the background is quite noisy and has a gradient in brightness. (The line is barely visible when opening the .png but if I read it as grayscale the ...
Zugi's user avatar
  • 33
0 votes
0 answers
139 views

I want to detect the white number plate region using contour detection and edge detection using opencv I have tried a variety of solutions. These work for sharp images but don't work for low res ...
Prajwal Panta's user avatar
1 vote
0 answers
272 views

I am trying to use opencv and python to detect the edges of a film frame to know it is in position to snap a picture with my raspberry pi camera. My plan is to detect the edges of a frame that must be ...
Dave425's user avatar
  • 11
0 votes
0 answers
150 views

I have written an algorithm to find and extract a Magic card in an image based on using OpenCV functions FindContours and ApproxPolyDP. Essentially, I clean up the image (blur, adaptive threshold, etc....
Brett's user avatar
  • 116
0 votes
0 answers
313 views

I am reading this 1/0 pulse on a GPIO physical pin 22 and I am trying to count the number of pulses occurring in the frequency of 100. I have two questions: I am reading and detecting the edges ...
Mainland's user avatar
  • 4,702
0 votes
1 answer
388 views

I am trying to get the edges of a cube in the image below using the Hough transform in the Scikit-Image library . Update Here is the code I am working with: smoothed_image = filters.frangi(gray_image)...
David's user avatar
  • 33
0 votes
0 answers
419 views

My aim is to detect all the contours, then run a circular Hough transform on them, to detect the circles on them and display them on the base image, then follow up with other actions. I should point ...
YASSS S's user avatar
0 votes
0 answers
347 views

I'm working on segmentation of plant epithelial cells. My goal is to isolate cells from microCT scans and then run various metric analyses on them. Right now I am able to segment and edge detect these ...
yippee's user avatar
  • 1
1 vote
1 answer
309 views

I want to detect a contour and draw its extreme points, my problem is how to get the extreme points from a distinct detected contour as the shape is not always continuous. I want to detect the contour ...
appie's user avatar
  • 32
-1 votes
1 answer
305 views

I am trying to create a python script to extract gas price information from gas station totems. I'm thinking about using number recognition that is built in opencv-python, but firstly I need to ...
opth's user avatar
  • 1
0 votes
1 answer
135 views

I am currently trying to detect the edge of a prism shape materials and find the angle of that shape. I have an original image like this: I wrote a Python program that detects the edge between ...
Tan Phan's user avatar
0 votes
1 answer
475 views

I'm trying to record a video from a webcam, then to apply an edge detection filter to this video using openCV.js (properly included in my html file). The recording works, I'm doing it with WebRTC. It ...
Tsu'Na's user avatar
  • 31
0 votes
1 answer
841 views

I am working on a project to detect the size and number of bubbles on a surface. My current algorithm works okay, except on images that have dark blotches on them. These blotches are mistakenly ...
Audra Addison's user avatar

1
2 3 4 5
22