回答済み
histogram
I know it's over a decade late, but of the two lines of code given, neither make any sense. Maybe the ridiculousness explains w...

8ヶ月 前 | 0

回答済み
How to fix a limit between 2 combined colormaps?
Get out of the habit of generating colormaps without specified lengths. If you use implicit lengths, you can easily wind up wit...

8ヶ月 前 | 0

| 採用済み

回答済み
How to manually adjust contrast of Image and then Display (percent Contrast)
I'm not really sure from what context the term "percent contrast" was taken here. It seems like it's referring to the arbitrary...

8ヶ月 前 | 0

回答済み
how to scramble pixels of specific part of image
Consider the example: % an image inpict = imread('peppers.png'); % generate a mask using any appropriate method % see also...

8ヶ月 前 | 0

回答済み
Index exceeds matrix dimensions. Error in gtc21 (line 21) outputBits = mod(sum(shiftedValues(generatorPolynomials)), 2);
Since you gave us no information, then the error message itself tells you everything that you could be told. In whatever file g...

8ヶ月 前 | 0

回答済み
how to open image .mhd
I don't know about the format, but here's a start. That should give you a volumetric image. Note that the data range is very n...

8ヶ月 前 | 0

| 採用済み

回答済み
Converting a color image into a set of data
I've posted a number of demos on estimating data from a pseducolor image, including thermal images. You need a clean pseudocolo...

8ヶ月 前 | 0

| 採用済み

回答済み
uiimage introduces artifacts? How to fix?
Interesting that this had already been reported before I reported it as a bug. The reason for these artifacts is simple. When...

8ヶ月 前 | 2

回答済み
Making an X ray image out of x, y, z coordinates ERROR
The data probably isn't being picked up by textscan() because of the way the delimiter is being specified. If there aren't othe...

8ヶ月 前 | 0

回答済み
How to transfer color and texture of an image to another image?
There are no MATLAB tools that will do good blind transfer of color themes, let alone textures. There are examples of technical...

8ヶ月 前 | 0

| 採用済み

回答済み
How do I eliminate (minimize) display quantization with imshow?
I don't really know why the renderer would change it that significantly, but maybe it depends on settings or drivers I don't hav...

8ヶ月 前 | 1

回答済み
please explain the function of each command used in this code. These commands are part of allan variance code.
zeros() numel() sum() sqrt() https://www.mathworks.com/help/matlab/matlab_prog/matlab-operators-and-special-characters.html ...

8ヶ月 前 | 1

回答済み
Fill confidence band hexadecimal color
Didn't recall that working either. X = [0 0 1 1]; Y = [0 1 1 0]; fill(X,Y,'','facecolor','#7E2F8E');

8ヶ月 前 | 0

回答済み
How to calculate standard deviation from ROI of image after thresholding?
You have the pixel values, so you can just use those. % a grayscale image inpict = imread('cameraman.tif'); % an antialiase...

8ヶ月 前 | 0

回答済み
How can i change the font size of XTick and YTick (x axis and y axis) in histogram of a image?
Other than manual editing, none of these answers work as simply as suggested. The reason is that imhist() creates two axes obje...

8ヶ月 前 | 0

回答済み
A problem in using imhist to display histogram of indexed image
This is a bug that's been part of imhist() for a very long time. When fed an integer-class indexed image, the colorbar will be ...

8ヶ月 前 | 0

回答済み
Make only the highest values of grayscale image transparent
I'm going to assume that the goal is to combine two images of the same page geometry and then save the result. If the end goal ...

8ヶ月 前 | 0

回答済み
Matrix of fading colors
Loops aren't needed. % don't embed parameters into the code outsize = [256 256]; % [y x] % i'm assuming we live prior to R2...

9ヶ月 前 | 0

回答済み
Reading image into 16 bit signed int
There's no elegant and succinct way of doing this with base tools alone, considering that you'll potentially need to support mul...

9ヶ月 前 | 0

回答済み
how to convert a monochrome image of depth 24 bits into a monochrome image of depth 8 bits ?
Here's a more comprehensive example which should handle both unsigned and signed integers. Attached are two demo images. One i...

9ヶ月 前 | 0

回答済み
How can I save a 32 bit image (uint32) as a tiff?
Here's a simple demo that should demonstrate writing odd numeric classes to a TIFF. This supports 8,16, and 32 bit signed and u...

9ヶ月 前 | 0

回答済み
Normalizing by means of zero-mean
I'm going to stick this here and close the duplicate threads. What's missing from this form of the question is that the input i...

9ヶ月 前 | 0

回答済み
How to find a polygon in an image
This is largely assembled from existing examples. I'm sure we can find a way to break it, but this image is pretty forgiving. ...

9ヶ月 前 | 0

回答済み
Imfuse 'blend' issues
Like most cases, I don't see the point of using imfuse() here. If you're treating the images as if they're binarized, make sure...

9ヶ月 前 | 0

回答済み
Bluewhitered function in tiledlayout environment
Unlike other map generators, bluewhitered() depends on the caxis of the current axes. You need to generate the map after you se...

9ヶ月 前 | 1

| 採用済み

回答済み
How can i change ppm image resolution when I using Imread?
Good gravy. I finally figured out what you're doing. You're writing your PPM files using 'maxvalue' set to 1023. This is wh...

9ヶ月 前 | 2

| 採用済み

回答済み
error
We know the following: You get a warning that a specific user-created (or downloaded) filename is preventing the use of a built...

9ヶ月 前 | 0

回答済み
how to get the pixel value of histogram?
You have the bin values. You know which bins you want. Why are you zeroing the histogram counts instead of changing the image?...

9ヶ月 前 | 0

回答済み
Make an image darker with overlay of another image
If your images are in standard scale (i.e. correctly scaled for their class), then I don't see why you'd be using imagesc() to d...

9ヶ月 前 | 0

回答済み
Coor image enhancement in spatial domain
"Enhance" is shorthand for "read my mind and do whatever it is that I want but haven't spent enough thought to formally conceive...

9ヶ月 前 | 0

さらに読み込む