That was actually quite good to reduce some small grains. However, I still have those dots top and bottom when plotting phase map.
On 7. Aug 2017, at 20:03, MTEXNewbie <rashed...@gmail.com> wrote:
Hi Luis,
That was actually quite good to reduce some small grains. However, I still have those dots top and bottom when plotting phase map.
--
If you want to reduce the number of emails you get through this forum login to https://groups.google.com/forum/?fromgroups=#!forum/mtexmail, click "My membership" and select "Don't send me email updates". You can still get emails on selected topics by staring them.
---
You received this message because you are subscribed to the Google Groups "MTEX" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mtexmail+u...@googlegroups.com.
Visit this group at https://groups.google.com/group/mtexmail.
For more options, visit https://groups.google.com/d/optout.
Hi Rüdiger,Below is the Orientation Map with Grain Boundary Overlay plot with non-indexed points, It is nearly the same.
but I have success using the 'unitcell' command as below (also deleted the non-index points) -[grains,ebsd.grainId] = calcGrains(ebsd('indexed'),'unitcell');
%set stepsize for your mapstepsize = .5; Hi,
Yes, the step size is the one you use during acquisition of the EBSD. If you accidentally forget to change it and it’s wrong, the tradeoff curve scale will not have y values from 0-1 – so it’s a good double check!
Cheers
Kat
--
If you want to reduce the number of emails you get through this forum login to https://groups.google.com/forum/?fromgroups=#!forum/mtexmail, click "My membership" and select "Don't send me email updates". You can still get emails on selected topics by staring them.
---
You received this message because you are subscribed to a topic in the Google Groups "MTEX" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mtexmail/fOrMd92tIJk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mtexmail+u...@googlegroups.com.
Could you please point me to some resources that explains your algorithm? It's kind of working and I would like to know more about it, especially the trade-off curve and the value at knee.
ebsd = ebsd(ebsd.ci>0.1);
plot(ebsd('Quartz'),ebsd('Quartz').orientations); % the plot thus obtained is attached (Image 1.jpg)
[grains,ebsd.grainId] = calcGrains(ebsd('indexed'),'unitcell');
ebsd_new=ebsd(grains(grains.grainSize>20 & grains.phase==0));
[grains_new,ebsd_new.grainId] = calcGrains(ebsd_new('indexed'),'unitcell');
plot(ebsd_new('Quartz'),ebsd_new('Quartz').orientations);
hold on
plot(grains_new.boundary); % plot thus obtained is attached (Image 2.jpg)
F=splineFilter;
ebsd_smooth=smooth(ebsd_new('indexed'),F,'fill');
plot(ebsd_smooth('Quartz'),ebsd_smooth('Quartz').orientations); % this step produces Image 3.jpg (attached)
Could you please let me know, where am I going wrong? I want to fill the interior of the grains and the space between the larger grains, but not the space surrounding them.
inclusions=grains(checkInside(grains(grains.grainSize>20),grains));
ebsd(inclusions('n'))=[];
Didn't help.
I tried this code as well:
ebsd_CI=ebsd(checkInside(grains(grains.grainSize>20),ebsd));---- the program gets kind of freezed once this line is enountered
ebsd(ebsd_CI<=0.1)=[];
No success still. I am unable construct the correct code to delete only those nonIndexed data points, which are present inside larger grains. I would really appreciate if you could help me out here.
[grains,ebsd.grainId] = calcGrains(ebsd);
F=splineFilter;
ebsd_sm=smooth(ebsd,F,'fill');
[grains_sm,ebsd_sm.grainId] = calcGrains(ebsd_sm);
% to delete the smaller and non-Indexed grains surrounding the larger ones
ebsd_sm(grains_sm(grains_sm.grainSize<10,'n'))=[];