Beantwortet
How can I save a figure (in jpeg and pdf) from this code?
At least as of R2019b, saveas() and print() do not accept uifigure handles. The documentation suggests that's still the case, b...

fast 2 Jahre vor | 0

Beantwortet
This is face morphing. Now I want to save and convert to a gif image format.
Here: % inputs A = imread('tape.png'); B = imread('strawberries.jpg'); % parameters nframes = 20; framedelay = 0.1; dit...

fast 2 Jahre vor | 0

Beantwortet
Calculation of psnr value in RGB image. I have calculated psnr using this code. But the result obtained is a complex number. What should be the error??
There are plenty of problems. function PSNR = psnrgb(I,W) [m,n,p] = size(I); [h,w,q] = size(W); % obviousl...

fast 2 Jahre vor | 0

Beantwortet
Exporting Graphs from Matlab App in PNG or JPG
Using gcf() won't work. The GUI handles aren't immediately visible, so calling gcf will just open and capture an empty figure. ...

fast 2 Jahre vor | 0

Beantwortet
why use 0.008856 in Lab color space?
The L* function is piecewise, and epsilon is the breakpoint location in terms of relative luminance (obviously). What significa...

fast 2 Jahre vor | 0

Beantwortet
Undefined function or variable 'impixelinfo'.
impixelinfo() is part of the Image Processing Toolbox

fast 2 Jahre vor | 0

Beantwortet
Is it possible to use the makehdr MATLAB function with 16bit images?
This appears to have been a bug in makehdr(). As usual, it doesn't appear anywhere in bug reports, but starting somewhere aroun...

fast 2 Jahre vor | 1

Beantwortet
Imported greyscale image into ImageLabeler, the main workspace shows the image as black, but Image Browser shows correct images
A few things to know: The imageBrowser app will misrepresent grayscale images by automatically rescaling their dynamic range. ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
Can I override imshow InitialMagnification default behavior?
This can be set manually from the preferences dialog, under Image Processing Toolbox > IMSHOW Display. This can also be done ...

fast 2 Jahre vor | 0

Beantwortet
I'm being told "Function definition not supported in this context. Create functions in code file."
Because this loop %*************************************** %Matlab Runge Kutta Routine - NEED HELP for count = 1:1:numsteps ...

fast 2 Jahre vor | 0

| akzeptiert

Beantwortet
How can I stretch an image non-uniformly?
I'm going to start this example using MIMT tools, since generating the displacement maps would otherwise be a chore. We can wor...

fast 2 Jahre vor | 0

Beantwortet
Histogram equalisation process and errors
Given the way you're trying to do 1D lookup for the final remapping transformation, your input must be integer-valued and nonzer...

etwa 2 Jahre vor | 0

Beantwortet
Why am I getting "Unrecognized function or variable 'fp'."?
Functions which are local to a script or local to another function are not accessible outside that scope. If you want your func...

etwa 2 Jahre vor | 0

Beantwortet
How does the regionprops calculate the area or the eccentricity of an object?
If you want to know how regionprops() works, open it up and look. Unlike bwarea(), regionprops() calculates the simple unweight...

etwa 2 Jahre vor | 0

Beantwortet
create mask (line) based on conditional (mask)
You could do it using ROI objects, but that would be terribly slow and prone to other problems. Here's an example: % dummy inp...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Creating a symmetric tile mosaic
I'm not really sure what the question was. "the color pattern but not the shape" really doesn't make much sense, since shapes i...

etwa 2 Jahre vor | 0

Beantwortet
How to plot one curve and change color according to value
Also: % inputs thresh = 25; x = linspace(0,10,100); y = sin(3*x).*exp(0.5*x); % m is equivalent to (y>thresh), so it's en...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
How to export images to a single pdf file
Saving images by taking screenshots will not ensure that the original resolution is preserved. I can only imagine that preservi...

etwa 2 Jahre vor | 0

Beantwortet
copping grayscale image and remove any other borders or details
This example relies on the images being clean TIFF files of the expected size. It won't work on JPGs, and it won't work on the ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Display/highlight specific pixels of in image
I can think of a few ways to create a composite grayscale + color labeled image, but it's not really clear to me what the actual...

etwa 2 Jahre vor | 0

Beantwortet
How to make a specific bar to be hatched with a specific color
Here's a start x = [1,2,3,4,5]; y1 = [0.25 1.14 2.20 0.21 1.09 2.16 ; 0.48 2.26 4.40 0.42 2.20 4.34; 0.72 3.38 6.58...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
matlab work slowly when plot
There are a number of things, but the biggest problem is something easily missed: plot(r*ones(numtoplot), x(initidx:reps), '.',...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Minimizing MATLAB windows while running?
I don't know why that reference answer got deleted, but it's still archived: https://web.archive.org/web/20150517051637/http://...

etwa 2 Jahre vor | 1

Beantwortet
How to change the color of shapefile in pcolor plot
If you're using geoshow(), then you should be able to set the relevant properties of the object being created (e.g. the 'color' ...

etwa 2 Jahre vor | 1

| akzeptiert

Beantwortet
How to calculate the percentage of each color in this image ?
I was bored and thought that the image itself was interesting. % decoding this image will produce a warning inpict = imread('i...

etwa 2 Jahre vor | 1

Beantwortet
How can I isolate some objects from a image?
As per usual with these assignments, the images are either microscopic, or they're low-quality JPGs or both. Besides the practi...

etwa 2 Jahre vor | 0

Beantwortet
Save an intensity image created with imagesc with true resolution
For maps of length 256 or 65536, the workaround using mat2gray()/ind2rgb() might be fine. There are things to consider. The qu...

etwa 2 Jahre vor | 0

Beantwortet
Getting " Yet Another Color Gamut Visualizer" App Working
That FEX submission uses setstructfields() from the Signal Processing Toolbox. which setstructfields() -all For most practic...

etwa 2 Jahre vor | 0

Beantwortet
Adjusting Y-Values in Histograms
The reason that the bar heights have discrete values is simply that the height represents an underlying integer count, and you h...

etwa 2 Jahre vor | 0

Beantwortet
How to save an image without axis or white space?
First things first, unless you need to include other graphical objects (lines, markers, annotations) in the image, save images u...

etwa 2 Jahre vor | 0

Mehr laden