Wheat flour is a powder made from the grinding of wheat used for human consumption. More wheat flour is produced than any other flour.[not verified in body] Wheat varieties are called "soft" or "weak" if gluten content is low, and are called "hard" or "strong" if they have high gluten content. Hard flour, or bread flour, is high in gluten, with 12% to 14% gluten content, and its dough has elastic toughness that holds its shape well once baked. Soft flour is comparatively low in gluten and thus results in a loaf with a finer, crumbly texture. Soft flour is usually divided into cake flour, which is the lowest in gluten, and pastry flour, which has slightly more gluten than cake flour.
Type adulterant used and its testing
Conventional method
Chalk powder is the commonly used adulterant in the wheat flour. It can lead to several health problems such as diarrhea, stomach disorders etc. It is generally used by sellers to improve the quantity of the wheat flour and to bargain at a larger scale. There are several chemical / physical methods for testing. One such method has been listed below.
Proposed method
Pure wheat flour sample is placed on a surface as a thin film and pictured.
Then it is adulterated with 20% of chalk powder.
The next step is to process these images and use it to compare with that of adulterated ones. Hence I used matlab software to process the images. The below image represents the high resolution image of the pure wheat sample.
The below image represents the high resolution picture of adulterated sample.
We can easily distinguish the some of the chalk powder substrates in the wheat flour sample when we take a closer look at the the above sample. Chalk powder is appears more whiter than the actual wheat flour sample.
A = imread('A.jpg');
B = imread('B.jpg');
RA = imref2d(size(A),0.2,0.2);
RB = imref2d(size(B),0.2,0.2);
figure;
hAx = axes;
imshowpair(A,RA,B,RB,'Scaling','independent','Parent',hAx);
This will provide a output image which can be able to find the differences between the images and to interpret the results quickly.
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.