답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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=''; ...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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. ...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
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,:)...

3년 초과 전 | 0

| 수락됨

답변 있음
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]; ...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
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(...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 0

| 수락됨

문제를 풀었습니다


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:...

3년 초과 전

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

| 수락됨

제출됨


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

3년 초과 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

질문


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...

3년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
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')...

3년 초과 전 | 0

답변 있음
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)...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

거의 4년 전 | 0

| 수락됨

답변 있음
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...

거의 4년 전 | 0

| 수락됨

답변 있음
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...

거의 4년 전 | 0

답변 있음
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...

거의 4년 전 | 0

답변 있음
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 ...

거의 4년 전 | 0

| 수락됨

답변 있음
Hatchfill function not working
Both hatchfill() and applyhatch_pluscolor have been unmaintained for a decade now and predate the current graphics system. If y...

거의 4년 전 | 0

답변 있음
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...

거의 4년 전 | 0

| 수락됨

더 보기