Skip to main content

Questions tagged [digital-image-processing]

Filter by
Sorted by
Tagged with
2 votes
0 answers
33 views

Being new in this forum, would like to get some hints for solving the following problem. In the attached frame the short vertical line segments are emission lines. As can be clearly seen, these lines ...
noste99's user avatar
  • 121
3 votes
0 answers
102 views

We have a binary raster image in which we consider the white blobs (connected components). We define a distance between two blobs to be the length of the shortest path between any two respective ...
user avatar
-1 votes
1 answer
91 views

The task is to "Show that the transformation f -> ((ln fx)x, (ln fy)y) is invariant under additive and multiplicative illumination changes." From my lecture notes, for ((ln f)x, (ln f)y), ...
Autumn's user avatar
  • 1
1 vote
1 answer
85 views

I'm trying to use a VAE (CNN-VAE to be exact) to reduce the dimension of some images I have in a dataset. I successfully trained my VAE, but now I'm not sure of the latent variable to return. Should I ...
Liam F-A's user avatar
1 vote
0 answers
48 views

I keep seeing the term "energy" used in computer vision literature, specifically when speaking about Image Segmentation. For example on this page on Graph-Cut. I'm just wondering if someone ...
Liam F-A's user avatar
3 votes
1 answer
127 views

Given two bitmap images (two arbitrarily sized two-dimensional matrices of integer values ranging from 0 to some maximum number), I want to determine their maximum overlaps. An overlap is a relative ...
reinierpost's user avatar
  • 6,339
1 vote
2 answers
801 views

I have two images of two objects that are suppose to be exactly the same. I use one for reference and one as my model. I want to find an algorithm that will help me find on which areas these images ...
Dan798's user avatar
  • 11
0 votes
1 answer
63 views

I an new to image processing and I have some questions I want to understand: What is the meaning of the imaginary and real part of the 2d fourier transform? What can it tell me about the image it ...
cbdes's user avatar
  • 1
1 vote
1 answer
86 views

I started learning DSA recently and I came across the Dynamic Connectivity Problem. One of the listed real-world applications of the Dynamic Connectivity Problem is "pixels in digital photos.&...
Srijan Mukherjee's user avatar
0 votes
1 answer
511 views

Let I (M x N) be an image made only of 3 pixels, how many unique Huffman code can you make (example: Image I has size 256x256, and has pixels of values 50,100 and 200). If someone can help me how to ...
fasdads's user avatar
2 votes
2 answers
92 views

What I need to do is go from a binary image like this: to a segmented structure like this: because I have a program that operates on those separated line contours after. As you see, those contours ...
Konstantin H.'s user avatar
2 votes
2 answers
1k views

I calculate similarity percent between two images. Another image is the same with changed brightness. I've already tried comparing by pixel (euclidean distance for grayscale and 0/1 values), comparing ...
UdevV's user avatar
  • 21
0 votes
0 answers
56 views

I am looking for a technique or an algorithm that outputs a unique number/vector for each pixel of the image. I want to give the pixel a perspective so the neighboring pixels have more visibility and ...
yousef yegane's user avatar
1 vote
0 answers
64 views

We have five types of photo receptors in the eyes but computer color systems just use the three red, green and blue. Three could be motivated if rod and melanopsin sensations are just linear ...
David Jonsson's user avatar
1 vote
1 answer
1k views

I'm an igsce student. I'm taking computer science as an OL subject this year. Pixels are the small squares which make an image. Inside each pixel there are 3 channels: one for blue, one for green, one ...
Manar's user avatar
  • 165
3 votes
0 answers
149 views

Say you have a grid of pixels. And there are 20 overlapping red rectangles on a blue background. I want to find an algorithm to count the minimum number of rectangles that are needed to form the image....
zooby's user avatar
  • 273
3 votes
2 answers
229 views

We are given two grayscale images, one of which contains a large, mostly contiguous patch from the other one. The patch can be altered with noise, its levels may be stretched, etc. Here's an example ...
Arthur B's user avatar
  • 353
1 vote
1 answer
749 views

I am working on a project to convert equations to LaTeX code. After segmenting out the characters, I got stuck on the detection part and was looking for some pre-trained model that could detect ...
Saqeeb's user avatar
  • 111
0 votes
0 answers
118 views

I am master degree student at Computer Science Department. I started master degree at this year. Now I'm reading two papers about computer vision. Actually before time I didn't have experience about ...
seungho hyun's user avatar
0 votes
1 answer
462 views

Previously, I tried convert a color image into a greyscale image by using pixel values of an image from a simple formula :- Grey = 0.3*Red + 0.58*Green + 0.11*Blue ...
Aashish Loknath Panigrahi's user avatar
0 votes
2 answers
114 views

I have been reading Image Processing from Gonzalez and Woods and in the chapter Image Transformation I have come across this equation $$ T \left(u, v\right) = \sum_{x=0}^{M-1} { \sum_{y=0}^{N-1} ...
Turing101's user avatar
  • 1,240