photo

Image Analyst


Last seen: Today 2010 年からアクティブ

Followers: 40   Following: 0

Senior Scientist (male/man) and Inventor in one of the world's 10 largest industrial corporations doing image analysis full time. Ph.D. in Optical Sciences specializing in imaging, image processing, and image analysis. 44+ years of military, academic, and (mostly) industrial experience with image analysis programming and algorithm development. Experience designing custom light booths and other imaging systems. Experience with color and monochrome imaging, video analysis, thermal, ultraviolet, hyperspectral, CT, MRI, radiography, profilometry, microscopy, NIR and Raman spectroscopy, etc. on a huge variety of subjects. Member of the Mathworks Community Advisory Board. Be sure to click "View All" in my File Exchange to see ALL of my demos and tutorials: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 Professional Interests: Image analysis and processing

Programming Languages:
MATLAB, Visual Basic
Spoken Languages:
English
Pronouns:
He/him
Professional Interests:
Image Data Workflows, Industrial Statistics, Image Processing and Computer Vision

統計

All
  • MATLAB Central Treasure Hunt Finisher
  • Most Accepted 2023
  • Most Accepted 2022
  • Solver
  • Personal Best Downloads Level 5
  • Editor's Pick
  • Most Accepted 2021
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • 36 Month Streak
  • Most Accepted 2014

バッジを表示

Feeds

回答済み
How to interpret the wrong image background of data augmentation?
Why are you calling imcomplement? Try not doing that. What is the original background: white or black? Finally, you could j...

1日 前 | 1

回答済み
Matlab executeable throws error
Try including that file explicitly in your compilation, something like mcc yourapp.m -a " C:\Program Files\MATLAB\MATLAB Runtim...

1日 前 | 0

回答済み
How can I apply a lowpass filter samplewise in my code?
One way is movmean.

1日 前 | 0

回答済み
What would cause Matlab to lose track of gcf()?
Don't do it like that: gcf().something. Assign something to gcf, like g: g = gcf; % No parentheses after gcf. I think a figur...

1日 前 | 0

回答済み
How do I change the output color when using the disp function?
See this File Exchange entry by @Yair Altman https://www.mathworks.com/matlabcentral/fileexchange/24093-cprintf-display-formatt...

2日 前 | 0

回答済み
Assigning features to the matrix based on windowing
Why not just tack on the condition and device as the last two rows in your loop? feature{4}(k) = data(k, 2); feature{5}(k) = ...

3日 前 | 0

回答済み
How to determine the midline in brain images.
Hard for us to say, don't you think, without seeing an image? What is the midline? Is it just the geometric midline as determi...

3日 前 | 0

回答済み
Segment connected regions in binary image
See these links: Watershed transform question from tech support » Watershed transform question from tech support Marker-Contro...

3日 前 | 0

| 採用済み

回答済み
I need help please to obtain histogram clonocolour values of TIF type photos. I can do this separately but i am struggling to do this with multiple images at a time.
Rather than try to figure out how many cells are there, I'd just simply compute the area fraction of purple. It will correlate ...

6日 前 | 0

回答済み
how to divide a color image into multiple binary codes
Not sure what you mean by binary codes. Please explain. How is that different than just a simple tile of the image you extract...

6日 前 | 0

回答済み
problemas con reconocer licencia
Do exactly what it says to do in the FAQ: https://matlab.fandom.com/wiki/FAQ#After_installation,_MATLAB_crashes_or_gives_an_erro...

7日 前 | 0

| 採用済み

回答済み
How to plot temperature along a defined line within a 2D temperature field
I know you already got an answer that you've accepted but I just thought I'd mention improfile. It can give you a profile of va...

7日 前 | 0

回答済み
Open and read unique spectrum file .spc
If youi're dealing with Spectroscopy, you really need to get GSTools library. It has functions to read SPC file(s), and other u...

7日 前 | 0

回答済み
the username and password?
Ask your professor how to do it, or another student who has done it successfully. If that doesn't work, see the FAQ: https://m...

7日 前 | 0

回答済み
I need to innovatively produce a 140x8 matrix filled with random grades from 140 students
Not sure what qualifies as "innovative" but how about making a matrix of all prime numbers, rescaled? % Get a list of 8*140 pri...

8日 前 | 0

回答済み
Projection of satellite image
Try the Registration Estimator app on the Apps tab of the tool ribbon. I haven't used it but with most or all apps, you can exp...

9日 前 | 0

回答済み
MATLAB Plots *.tif According to Light
This is what I got so far: % Initialization steps. clc; % Clear the command window. close all; % Close all figures (excep...

9日 前 | 1

| 採用済み

回答済み
choose random places on matrix
Simply use randperm and linear indexing. No need to figure out or convert locations to (row, column) indexes (that's a waste of...

10日 前 | 0

回答済み
Working in Excel with live on MATLAB
You can interact with Excel "live" if you are using Windows and use ActiveX. I attach a demo for that, ExcelDemo. You can stop...

11日 前 | 0

回答済み
Force saved figure to use a specific number of pixels
"I am saving different maps" <== What, like a road map, or an image with different colormaps? "I save my image" ...with "... ex...

11日 前 | 0

回答済み
MATLAB Plots *.tif According to Light
In your 3D-ish rendering, where exactly are the shadows? And the yellow spots? Can you point to them with arrows or something?...

11日 前 | 0

回答済み
Need help to removing motion (breathing?) artifact from ECG signal
I'm sure it's been done before. Rather than me just guessing, I suggest you search the medical literature in PubMed to find art...

11日 前 | 0

回答済み
How to give Gray color histogram gray shade instead of blue
Try using the 'FaceColor' input of histogram. % Create sample data. data = rand(1, 1000); % Define custom color. grayColor ...

11日 前 | 0

回答済み
How to change Fontcolor xticks and yticks
Here is a demo that shows you how to change just about everything on a plot: % Demo to make a black graph with red Y axis, gree...

11日 前 | 0

回答済み
How to hide console messages for a matlab executable in batch mode
Not sure what things are showing up but if you don't want any then make sure you have semicolons after every line, and don't use...

12日 前 | 0

回答済み
Pattern recognition in Robot Vacuum Map
See if this might help: https://www.mathworks.com/help/vision/ug/abandoned-object-detection.html?s_tid=srchtitle_site_search_1_...

12日 前 | 0

回答済み
LCD defect detection using matlab
Yes, MATLAB is a great tool for developing image processing apps. It's easy to program in and has a great library of functions ...

12日 前 | 0

回答済み
unknown parameters in Radon transform example
"The page you were looking for does not exist. Use the search box or browse topics below to find the page you were looking for."...

12日 前 | 0

回答済み
How to do film dosimetry?
You can use imsplit to separate an RGB image into individual component images in one line of code: % Separate RGB image into in...

12日 前 | 0

回答済み
Draw first principal component line and regression line on the same scatterplot
It looks like you're doing a simple linear fit. I'm not seeing how you're using pca. It sounds like homework and they want you...

13日 前 | 1

さらに読み込む