Respondida
[Image Processing] Detect horizontal lines in image
Try a masked median filter, where you median filter the image, then find the bad lines, then replace only the bad lines with the...

más de 2 años hace | 0

| aceptada

Respondida
cant detect valid coins and segement them fully, have a deadline in 4 days
Looks like it should work. What values are in allSD? Maybe you need to pick a different threshold than 15. How are they deter...

más de 2 años hace | 0

Respondida
squares moving error in matlab
This doesn't make any sense: if xnew < 1 xnew > num_of_cells ; move_x = -move_x; end It should be something like i...

más de 2 años hace | 0

| aceptada

Respondida
What is "peaks" in tutorialApp?
peaks a built-in function that you can actually open up and look at in the editor. Do this at the command line: >> edit peaks....

más de 2 años hace | 0

Respondida
I want to rotate the cartoon present in this image.Can any of you help me how can I read this image on MATLAB and extract the points from pic and rotate it
@Mishqat it's not clear what you want to do and what your starting data is. Are you starting with an image and simply want to r...

más de 2 años hace | 0

Respondida
How to show decision region on iris data set for only 2 features?
Try using patch or fill

más de 2 años hace | 0

Respondida
How to draw a dynamic graph where the sum of the internal distances is a constant value?
"How to draw a dynamic graph...." <== If you have the coordinates, you can use plot3 To learn other fundamental concepts, inve...

más de 2 años hace | 0

Respondida
Area Calculation Using polyarea: Figure vs PNG
There is no spatial calibration when you save a figure, or a non-image graph in an axes on a figure. So the image you get upon ...

más de 2 años hace | 0

| aceptada

Respondida
how to use getvarname
I doubt your program requires it, unless you wrote it poorly. The FAQ shows you how to do this unwise operation and tells you w...

más de 2 años hace | 1

Respondida
colorbar tick distance to axes and label position
You can get the position property of both cbar handle, and the axes. ax = gca axesPosition = as.Position 2. The Position prop...

más de 2 años hace | 0

Respondida
measure the length in the image
Try this: % Tests curl for triggering stats analysis of laundry stain removal raw data. clc; % Clear the command window. c...

más de 2 años hace | 0

| aceptada

Respondida
Calculating Similarity between a single pixel and a surrounding region
I'd use delta e. I have a demo i can post tomorrow. what is the region? The 8 surrounding pixels?

más de 2 años hace | 0

| aceptada

Respondida
i need databases for hand gesture recognition
Go here to find groups working on gesture recognition: http://www.visionbib.com/bibliography/contentspeople.html#Face%20Recogni...

más de 2 años hace | 0

| aceptada

Respondida
How do I make a plot background black?
See this demo to show you how you can change just about everything by referring to it properly. % Demo to make a black graph wi...

más de 2 años hace | 1

Respondida
how to highlight my filamentous edges ?
It looks like your image is way overexposed. Try reducing the exposure. Try my attached fiber orientation demo.

más de 2 años hace | 0

| aceptada

Respondida
what happened to the blue bar in my Matlab user interface?
The blue margin indicates the extent of the section you are in, meaning that the blue bar runs from the starting line of the sec...

más de 2 años hace | 0

Respondida
How to calculate the distance between blood vessel edges?
You need to invert your binary image. The vessel should be white: binaryImage = ~storedStructure.BWfinal; binaryImage = bware...

más de 2 años hace | 0

Respondida
How to extract data from drawn images?
When you originally created the picture, just save the data at that time to a .MAT file using save. You can recall it later fr...

más de 2 años hace | 0

Respondida
Select dominated columns in a large matrix
How about (untested) [rows, columns] = size(F) itsDominated = false(1, columns); % Keep track of which columns are dominated. ...

más de 2 años hace | 0

| aceptada

Respondida
When calling a class (say, to convert types), are we calling a function?
I like to think of it like this. In standard object oriented programming (OOP) you have a "class" which is an object that is a ...

más de 2 años hace | 3

Respondida
How can I apply agglomerative hierarhical clustering based on the distance between regions?
Not sure why I didn't see your question years ago (since I already have a demo), but I agree that dbscan seems to be the algorit...

más de 2 años hace | 0

Respondida
Random maze solving algorithm with matrix
For a variety of maze-solving algorithms, including one by me and another by Steve Eddins (the leader of image processing team),...

más de 2 años hace | 0

Respondida
How can i get rid of elements in image?
Try this for one image. % Demo by Image Analyst clc; % Clear the command window. close all; % Close all figures (except t...

más de 2 años hace | 1

| aceptada

Respondida
what could be the reason to get negative predicted output for new dataset?
Because that's what the model thinks the value should be. If you don't think it's right then make sure your test data is in the...

más de 2 años hace | 0

Respondida
how I edit layout figure according my picture??
What did you do to make the top image? Did you use subplot(1, 10, k) ? Maybe try subplot(2, 5, k)

más de 2 años hace | 0

Respondida
How to get pixels per millimeter from image of a scale
Whoever told you to use the Fourier transform to spatially calibrate your image was either (1) teasing you, (2) pulling a prank ...

más de 2 años hace | 0

Respondida
how to overlay cropped image on uncropped original image
See my attached demos about pasting an image onto another image. Adapt as needed. You might also like How to overlay a foregr...

más de 2 años hace | 0

Respondida
Source code for Heart Disease Prediction
In addition to PubMed you can try http://www.visionbib.com/bibliography/contentsmedical.html#Medical%20Applications,%20CAT,%20M...

más de 2 años hace | 0

Respondida
Estimate different trend lines and its slopes from a set of points
Perhaps findchangepts help findchangepts

más de 2 años hace | 0

Respondida
How to make the color gradient gradual. In the plot
The number of colors depends on the number of unique values in your data as well as the number of unique colors in your colormap...

más de 2 años hace | 0

Cargar más