Close

Testing of wheat flour sample

A project log for AI based Adulteration Detector

To determine the type and amount of adulteration in a given substance using Image Processing.

gvigneshG.Vignesh 04/23/2017 at 18:290 Comments

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.

Image result for wheat flour adulteration

Proposed method

Pure wheat flour sample is placed on a surface as a thin film and pictured.

Thin film of pure wheat flour sample

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.

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.

To compare this adulterated sample with that of the pure sample requires only few lines of code. First import the images in the Matlab software and in the command window type the below mentioned code.
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.

The light purple colour patches indicates the darker regions/ highlighted regions that were present in pure sample image when compared to adulterated one. This effectively means that the adulterated chalk powder are indicated as purple patches. The green colour indicates the contrast of second image over the first one and it need not taken into account. So using the above image we can interpret that the wheat flour sample has been adulterated with 20% of chalk powder.


Discussions