Tagged Questions
2
votes
1answer
43 views
How do I access the binary matrix underlying an EdgeDetect output?
Applying EdgeDetect to an image generates a black and white edge-detected image, which I suspect corresponds to an underlying binary matrix. How can I access this ...
9
votes
2answers
514 views
How to transform a 3D image by an affine transformation matrix
I have a question concerning Image Processing:
I have a stack of images, which I can compose to a 3D image using Image3D.
Additionally I have a 4x4 affine transformation matrix.
I would like to ...
19
votes
1answer
911 views
Is there a way to convert an image into a Graph?
I'm trying to convert an image with several overlapping dots into a Graph. The goal is to be able to derive the Kirchhoff matrix for the randomly created "network ...
12
votes
4answers
499 views
What is the fastest way to locate an image inside a larger image?
let b =
let c =
How to do:
find[c,b]
that returns the bounding box of c in b?
...