photo

DGM


Last seen: 1 dag ago Active since 2015

Followers: 12   Following: 0

Hi, I'm nobody. I don't belong here, but I have nothing better to do. Matlab used to be part of my work. Now it's part of my hobbies. That's pretty sad, really.

Statistics

All
MATLAB Answers

37 Questions
2.886 Answers

File Exchange

10 Files

Cody

0 Problems
1 Solution

RANK
30
of 298.949

REPUTATION
6.714

CONTRIBUTIONS
37 Questions
2.886 Answers

ANSWER ACCEPTANCE
62.16%

VOTES RECEIVED
842

RANK
906 of 20.661

REPUTATION
2.072

AVERAGE RATING
5.00

CONTRIBUTIONS
10 Files

DOWNLOADS
114

ALL TIME DOWNLOADS
13471

RANK
99.733
of 162.957

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 36 Month Streak
  • Thankful Level 5
  • Solver
  • Personal Best Downloads Level 4
  • GitHub Submissions Level 3
  • Editor's pick for Answers
  • Most Accepted 2022
  • Ace
  • Most Accepted 2021
  • 5-Star Galaxy Level 4
  • Revival Level 3
  • Knowledgeable Level 5

View badges

Feeds

Answered
how can i apply otsu threshold on "A ‟ component of filtered LAB color space?
The unspoken part of the question here is the fact that A and B are zero-centered and the data distribution is typically asymmet...

2 dagen ago | 0

Answered
How can i convert an Indexed Image To a Binary Image ?
The attached image is a JPG; as such, it is not an indexed image. So we now have two interpretations of the question: "The ima...

2 dagen ago | 0

Answered
HOW CAN I CONVERT HSI TO BINARY IMAGE WITH THRESHOLDING
See: https://www.mathworks.com/matlabcentral/answers/397100-hsi-thresholding-mat-lab-code

2 dagen ago | 0

Answered
Conversion to grayscale image from binary image
If your binary image is a logical image, as returned from im2bw() or imbinarize(), then it can be converted to a numeric class u...

2 dagen ago | 0

Answered
Programmatically create histograms like Color Thresholder
In this answer I give a couple ways to create colorcoded histograms for multichannel images the long way. In the comments, I de...

ongeveer een maand ago | 0

Answered
finding longest length
The written description doesn't really describe what the example describes. The example returns the last true element from only...

2 maanden ago | 0

Answered
How to adjust the color bar in an image histogram?
If we are to answer the question directly: % you have an RGB image inpict = imread('peppers.png'); % imhist() cannot plot a...

2 maanden ago | 0

Answered
how to represent the purple color by a string value
See also: https://www.mathworks.com/matlabcentral/fileexchange/48155-convert-between-rgb-and-color-names https://www.tutorialr...

2 maanden ago | 0

Answered
slicing 3D stl file to 2D series of image
If the goal is to produce raster images as output, and your slices are uniformly-distributed, then I suppose that one way would ...

2 maanden ago | 0

Answered
Create triangular mesh
In order to fill the hole, you need three vertices and you need them in the correct direction. Your edge segments aren't in a c...

2 maanden ago | 0

Answered
How to trim the non-manifold triangle off the stl file?
I'd agree with Bruno on this. Especially if it's just a small fix on a single file, it's easier and quicker to just throw it in...

2 maanden ago | 0

Answered
How to export 3D sphere at stl format
If you have gridded xyz data which you can feed to surf(), you can use surf2stl(). https://www.mathworks.com/matlabcentral/file...

2 maanden ago | 0

Answered
Constrain a Delaunay Triangulations With a Surface?
The documentation for delaunayTriangulation() indicates that constrained triangulation is only supported for 2D inputs. If the ...

2 maanden ago | 0

Answered
colored elevation map from STL file
A simple example unzip pringle_top.stl.zip T = stlread('pringle_top.stl'); trisurf(T); shading flat; view(10,33) axis equ...

2 maanden ago | 0

Answered
Can I get an .stl from a spreadsheet?
Surf2stl() expects gridded data unambiguously defining a surface. All you have is a list of scattered points. The way the data...

2 maanden ago | 0

Answered
How can i plot this pic by matlab ??
It looks like an upside-down representation of HSV with some random unknown extra line. I'm going to ignore it, since it looks ...

2 maanden ago | 0

Answered
Generating voxels for stl files
See also: https://www.mathworks.com/matlabcentral/answers/217754-stl-to-matlab-coordinates-conversion

2 maanden ago | 0

Answered
Cross sections of 3D surface (stl)
See also: https://www.mathworks.com/matlabcentral/answers/2175386-surface-area-at-given-hight-of-an-stl-file

2 maanden ago | 0

Answered
Extract information from .stl file
For example: unzip sphere_20.stl.zip % a sphere with a radius of 15 T = stlread('sphere_20.stl'); % get the bounding box...

2 maanden ago | 0

Answered
3d Model view
Since this was already in Meshlab, Filters Menu -> Normals Curvatures and Orientation ->Reorient all faces coherently. If you h...

2 maanden ago | 0

Answered
why my 3D image is not extruded in 3D software?
The object height is clearly unit-scale. It's never changed. c = im2double(bw); % it's unit-scale. d = imgaussfilt3(c,4); %...

2 maanden ago | 0

Answered
how to use stlwrite function options
This obviously refers to FEX #20922. Assuming that the data is gridded, such as could be given to surf(), then: [x y z] = sphe...

2 maanden ago | 0

Answered
What we need to be doing is ignore subtraction of slopes of A.stl, which are too steep...
If I'm gonna guess, I might as well invest in it. unzip saddles.zip % these two files have directly correlated vertex lists ...

2 maanden ago | 0

Answered
Determine the maximum height and maximum width of the cross-sectional section from the stl file
Obtain the sectional geometry: https://www.mathworks.com/matlabcentral/answers/2175386-surface-area-at-given-hight-of-an-stl-fi...

2 maanden ago | 0

Answered
converting a .stl file of 3D polyhedron into a .mat file
If the goal is to convert the object into a volumetric image, then: https://www.mathworks.com/matlabcentral/answers/217754-stl-...

2 maanden ago | 0

Answered
How to read 3D mesh STL file
If your goal is to create a DiscreteGeometry object (for the PDE toolbox), then importGeometry() is what you'd use, but otherwis...

2 maanden ago | 0

Answered
Efficient algorithm for plotting edges detect in a triangular mesh
If you are reading your data from an STL and can represent it as a triangulation object, then this can be simplified tremendousl...

2 maanden ago | 0

Answered
How to get the angles across a 3D surface?
I think this is what was meant. unzip pringle_top.stl.zip % for the forum % an STL file T = stlread('pringle_top.stl'); ...

2 maanden ago | 0

Answered
How to obtain normals from faces?
The easy way would be to use the triangulation class, or since we're pre-R2013a, use TriRep(). The following example was tested...

2 maanden ago | 0

Answered
CAD model cutting slices
Depending on what is meant by "cut a model" means: Find the 2D sectional geometry at a given altitude: https://www.mathworks.c...

2 maanden ago | 0

Load more