Réponse apportée
While doing image analysis, how can I auto detect which rows of pixels to analyze?
There's probably a bunch of different ways to approach this. If we can assume that the objects in the image are roughly grid-al...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to place pregenerated image (double) on top of an opened image with transparency?
If you're generating a ruler image each time and don't need to save a copy, then just don't save a copy. folderName2save=''; ...

plus de 3 ans il y a | 0

Réponse apportée
How to create a random and smooth varying rpm profile?
Filter the rpm signal. Depending on what toolboxes you have, there are a lot of tools you could use. I'm just going to use a v...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to save data as binary Image in MATLAB
There's nothing to save but a black image, since the binarized image is always empty. I'm not sure what you're trying to do wit...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
error in imshow and alpha
I'm going to go out on a limb here and suggest that you likely have another function file called alpha.m somewhere on the path. ...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How to recognize 6 colors of a face rubik's cube at the same time?
Let's start with an example that doesn't solve the problem. Herein, I extract the mean color in each block. Much of this examp...

plus de 3 ans il y a | 0

Réponse apportée
Matrix dimensions must agree
I'm going to guess that this is what was intended wn = 196570; r = 6351.43; chi = 0:0.1:2; phim = 1; ke = 1.134; w = 1./(w...

plus de 3 ans il y a | 0

Réponse apportée
How to determine the area of individual white picture elements?
You can use regionprops to find the areas of all objects in a binary image. The result is an area measured in pixels. To conve...

plus de 3 ans il y a | 0

Réponse apportée
Drawing Multiple surf Plots with Different Color Map and Different Transparencies
Well, my network connection is super terrible, so I'm not going to be trying to download a bunch of stuff. As given, the probl...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
how to create gray scale gradient image?
Observe that the image profile is not piecewise-linear, but rather it's a cosine function. % observe that the profile is not PW...

plus de 3 ans il y a | 0

Réponse apportée
SAVE A 4D DATA WITH THE BLOCKS STACKED SIDE BY SIDE
Alternatively, you could use IPT imtile(). A = rand(32,32,2,663); % initial 2-channel multiframe image B = imtile(A(:,:,1,:)...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
MSE and RMSE of vector and Matrix
You're not taking the mean of the row vectors, so the RHS of the assignment is still a vector. Try this: u = [-30 0 41.721]; ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
I want to make transparent the middle section of contour plzzzz help
The example in this answer is similar. Therein, the lowest contour level is made transparent. If you dont want the other level...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How to add a glare effect to a given photo
There seem to be a number of papers, including the one you mention that propose methods for calculating/simulating disability gl...

plus de 3 ans il y a | 0

Réponse apportée
use imcrop and specify width and height but not starting location?
This is an attempt to constrain the size of the ROI object during user interaction. % say you have an image inpict = imread(...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Can someone with a free account (without MATLAB license) solve Cody problems and get badges?
I know dpb already mentioned it, but it's easy enough to test if you have such an account. I just solved the introductory Cod...

plus de 3 ans il y a | 0

| A accepté

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

plus de 3 ans il y a

Réponse apportée
I have an image that is 234x432x4 size wise. I tried imshow() and image(), but it doesn't work. What do I use?
If the image is CMYK, hyperspectral, or simply a volumetric image, then this answer really doesn't apply. Admittedly, it's more...

plus de 3 ans il y a | 0

Réponse apportée
How to use imtile, montage or any other methods to concatenate images without affecting the resolution?
If you're using IPT imtile() or montage(), you can maintain the geometry of each sub-image by making sure the 'thumbnailsize' op...

plus de 3 ans il y a | 0

| A accepté

A soumis


Simple DTMF Encoder & Decoder
Simple tools for demonstrating encoding and decoding a sequence of DTMF tones.

plus de 3 ans il y a | 3 téléchargements |

0.0 / 5
Thumbnail

Question


Change FEX submission to use offsite hosting
When creating a new submission on the File Exchange, you have the choice of: uploading to TMW's servers linking to GitHub lin...

plus de 3 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
Change specific color in an image to another one
Consider the following example using the OP's original image and task. % Load image [idxpict,ct] = imread('iteration31.png')...

plus de 3 ans il y a | 0

Réponse apportée
How do I get coordinate from 2D image ?
What's wrong with just finding the maxima of the inputs themselves? % you have z as a function of x and y [x y z] = peaks(100)...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Setting overlap colours in plot with transparent layers
When using alpha properties to visualize the intersection of graphics objects, there isn't really a way to make the intersection...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How can I use view a montage using Image Viewer App through imtool()?
You should be able to use imtile() instead of montage() with the same syntax in this particular case. The output of montage() i...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to modified maximum pixel value in logical array
I'm going to post this as a tentative answer. I doubt my interpretation of your intent is wholly correct, but it's probably cor...

plus de 3 ans il y a | 0

Réponse apportée
Convert RAW File (images) to PNG
A .raw file can be a number of different things. I'm not familiar with .mhd files, so I can't comment on that. It's not clear...

plus de 3 ans il y a | 0

Réponse apportée
problems with creating a multiplication table
R and C have no ':' in them. R and C are row vectors, because that's what 3:10 and 2:3:33 are. It's unclear what the behavior ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Hatchfill function not working
Both hatchfill() and applyhatch_pluscolor have been unmaintained for a decade now and predate the current graphics system. If y...

plus de 3 ans il y a | 0

Réponse apportée
I used applyhatch_pluscolor to fill the bar chart, but the legend and coordinates text are blurred,
That FEX submission hasn't been maintained in over a decade and predates the current graphics system. It doesn't work unless yo...

plus de 3 ans il y a | 0

| A accepté

Charger plus