create account

Digital Image Processing - a practical approach by christinaa

View this thread on: hive.blogpeakd.comecency.com
· @christinaa ·
$101.32
Digital Image Processing - a practical approach
<div class=text-justify><p> An image is an optical representation of an object illuminated by a radiation source. A <i>digital</i> image is defined as the function of real variables having a precise amplitude (brightness, contrast, etc.) and coordinate position. </p>
<center><sub><img src='https://cdn.steemitimages.com/DQmW5jUNzpVGgQCYHCqL2vqrQAgPNoV6AjEiWVEMcXSkqBp/car-communication-3100981_1920.jpg'>
Conceptual image from <a href="https://pixabay.com/en/car-communication-talk-self-talk-3100981/">Pixabay</a></sub></center>
&nbsp;
<p>In electrical and computer engineering, image processing is a form of <a href='https://en.wikipedia.org/wiki/Signal_processing'>signal processing</a> that uses an image as the input signal. The output of image processing can be a set of characteristics or an entire image. Image processing technology can be broadly classified into three categories:</p>
<p><li>Analog Image Processing</li>
<li> Optical Image Processing </li>
<li> Digital Image Processing  </li></p>
<p> Analog image processing is used in television broadcasting through dish antenna systems and is standard in older television models. Signals are received in analog form having the characteristics of phase shift and phase difference in analog image processing system.</p>
<p> Optical image processing techniques are used in microscopes and telescopes to visualize and enhance a specific object. A combination of lenses are used in specific orientation to perform precise operations. </p>

<h1><center>Digital Image Processing</center></h1>
<p>Digital image processing (DIP) involves treating an input image as a discrete signal and applying standard signal processing algorithms to perform specific operations. DIP is the most advanced branch of modern image processing technology. Generally speaking, the input signal is analyzed with the following operations: </p>
<h3>Image Acquisition</h3>
<p>The very first step of DIP is image acquisition where the input image is captured by a scanner or digital camera module. Image acquisition may also include some pre-processing techniques such as enhancement, <a href='http://desktop.arcgis.com/en/arcmap/10.3/manage-data/raster-and-images/color-model-conversion-function.htm'>color model conversions</a>, etc. <a href='https://www.mathworks.com/discovery/image-enhancement.html'>Enhancement techniques</a> emphasize specific characteristics of the input image while color model conversions modify the colors of the image. </p>

<p><div class="pull-right"><img src='https://cdn.steemitimages.com/DQmatMsY51bHTsu95oL3NndGrVt5hnhVBQpzQwB557zdeoi/14.png'><center>Figure 1: Schematic diagram of image processing, by the author</p></center></div>
<p><h3>Segmentation</h3></p>
<p><a href='https://en.wikipedia.org/wiki/Image_segmentation'>Segmentation</a> is the process of partitioning the input image into integral parts. This is one of the most challenging parts of DIP. The segmentation procedure is accomplished by scanning the image pixel by pixel and quantifying each based on a specific threshold value. </p>
<h3>Representation </h3>
<p>The raw pixel data output from segmentation is used in the <a href='https://pdfs.semanticscholar.org/presentation/5cd5/86d6bb4cf7bab42be0e99bf860f967bcd1f5.pdf'> representation</a> step. Analysis of corners and inflection is done using boundary representation and edge detection. Regional representation of the entire image is required to perform an analysis on textural or skeletal shapes. </p>
<h3>Restoration</h3>
<p>A mathematical, model-based <a href='https://en.wikipedia.org/wiki/Image_restoration'> restoration</a> technique is used to enhance the quality of the processed image. Filters (<a href='https://en.wikipedia.org/wiki/Gaussian_filter'>Gaussian</a>, <a href='http://machinelearninguru.com/computer_vision/basics/convolution/image_convolution_1.html'>Convolution</a>, etc.) provide convenient methods of image restoration. A brilliant article by <a href="https://steemit.com/@terrylovejoy"> @terrylovejoy</a> about the effective use of filters in astrophotography can be read <a href="https://steemit.com/steemstem/@terrylovejoy/guide-to-basic-astrophotograph-10"> here</a>.</p>
<h3>Output Evaluation</h3>
<p>There are several image processing algorithms that can be used to evaluate the output image. The characteristics of the output can also be gathered for further analysis such as face detection or fingerprint recognition.</p>
<h2> DIP System Components</h2>
<p>A variety of components are required to make DIP systems functional. The fundamental elements of a DIP system are:</p>
<table><tr><td>1. Image sensor</td><td>4. Sufficiently powerful hardware</td>
<tr><td>2. Computational device</td><td>5. Image processing software</td>
<tr><td>3. Display device</td><td>6. Networking equipment </td>
</table>
<p>The acquisition of digital images is commonly done with the help of a digital camera. The camera sensors generate electrical outputs that are converted into discrete signals. Computational devices are required to analyze the acquired data using specific algorithms. Specialized image processing hardware is often necessary to achieve a desired level of performance. </p>
<p>Software designed especially for image processing is a core component of DIP systems. OpenCV,  ImageJ, Matlab, and eFilm are a few of the most commonly used image processing software packages. These packages support a variety of different programming languages like C, C++, Python, Java, etc. Matlab is widely used in electrical engineering while eFilm is popular for biomedical image analysis. Image displays and networking equipment are also essential components of a practical DIP system.</p>

<h1><center>DIP Applications</center></h1>
<p>Digital image processing can be applied to help solve problems in a wide range of diciplines. Researchers are continually trying to develop new algorithms to improve image processing. Some common applications of DIP include digital video processing, face detection, machine learning, biometric verification, remote sensing, computer vision, pattern and signature recognition, astrophotography, biomedical image analysis, and control robotics.

<p>A detailed discussion on the applications of DIP will be provided in upcoming chapters of this series. Today, we will start by looking at a simple example of DIP. </p>

<h2>Shape Identification using DIP in Matlab</h2>
<p>The concept of digital image processing can easily be discussed with a practical example. As stated earlier, DIP can be done using any of the most widely used programming languages. Numerous software and processing techniques are used in DIP and there are dedicated software packages such as ‘Adobe Photoshop’ or 'GIMP' that can process digital images in a multitude of ways.</p>
<p><a href="https://www.mathworks.com/products/matlab.html"> Matlab</a> is a numerical computing environment for engineering and scientific research analysis that uses a matrix based high performance programming language known as "Matlab language". Digital image processing operations are performed in Matlab with the help of built-in functions. 
The objective of this image processing analysis is to identify the roundness of different shapes. This simple task will be demonstrated using Matlab. The following figure will be used as it contains several uniquely shaped objects.</p>
<center><img src='https://cdn.steemitimages.com/DQmULiG25hmSBWsZ4XpADQPSaXuAjGnprmVy5zaKp7CF7Pk/g5.png'>Figure 2: Sample image from <a href="https://pixabay.com/en/moderation-wall-presenter-moderation-3290846/">Pixabay</a><sub>under <a href="https://creativecommons.org/share-your-work/public-domain/cc0/">CC 0</a></sub></center>
<p>Begin by changing the ‘current folder directory’ in Matlab to the local folder containing the sample image. Acquisition of the image is done using the <code>imread</code> function. In this case, the processed image is assigned the variable name ‘sample’. The sample image is then converted to grayscale with the help of <code>rgb2gray</code> function, as shown in Figure 3. 
<p><center><img src='https://cdn.steemitimages.com/DQmYXpdDXFaKqCkXoqiDkymM5fhJsYmVquMAMfHAeuRsuDV/w1.PNG'>
Figure 3: Grayscale conversion in Matlab.</center></p>
<p>Next, the grayscale image is converted to black and white so that boundary representation can be applied. Objects smaller than a 50-pixel threshhold are ignored to reduce the noise.</p>
<p><center><img src='https://cdn.steemitimages.com/DQmQPezPUBYD8zuB7NYfADLyhZ7wfBHVShSSnpKTxRApcgm/w2.PNG'>
Figure 4: Black & white conversion with noise reduction.</center></p>
<p>Only the outer edges of the shapes are considered and each boundary is drawn within a matrix. A thin white colored boundary line is plotted around each object to highlight the boundary region. The threshold value is set as high as 0.98 to obtain an accurate identification.</p>
<p><center><img src='https://cdn.steemitimages.com/DQmcAjQwaunEdk7eqPbivRbEFSYU4gEtXUr3mpesUZAzs6P/w3.PNG'>
Figure 5: Boundary operation.</center></p>
<p>The area and perimeter of each object is calculated using the respective formulas (provided below). A metric was formed to estimate roundness by determining the shape of the object relative to a perfect circle. The acquired data is then plotted to generate a digitally processed output image. </p>
<p><center><img src='https://cdn.steemitimages.com/DQmV311hcJtC8D3dzo1eae4H29WKXaMsFnquG3Qwhnk6dck/w4.PNG'>
Figure 6: Metric formation and plotting.</center></p>
<p>Figure 7 shows the output image labelled with the calculated value of roundness. The more circular objects have numbers closer to 1.0. </p>
<p><center><img src='https://cdn.steemitimages.com/DQmPkUcZD3AymiJZ5Gg23JqMvJR88Tn3hSyL8Kd1xjmD4Az/w5.jpg'>
Figure 7: Digitally processed output image.</center></p>


<h1><center>Conclusions</center></h1>
<p>Digital image processing is becoming one of the most important branches of industrial production technology. The implementation of controlled robotics algorithms in DIP technology is helping to increase production efficiency. Biometric verification algorithms with improved accuracy are also being developed based on enhanced image processing.</p><p> From urban traffic control systems to astrophotography, image processing is ubiquitous in modern civilization. The major drawback of this technology at present is the limitation of image resolution quality. The viewing angle and the optics and hardware of the camera have a significant impact on the processed result. Ongoing advanced research is expected to further mitigate this hurdle with improved image acquisition technologies.   </p>
<p>A wide range of software environments can be used to perform DIP. In this article, I used Matlab programming language to evaluate a fundamental operation of shape identification. Matlab R2017a was used to create this programming environment. The complete code of the program is provided below:</p>
<pre>
sample = imread('g5.png');
imshow(sample);
I = rgb2gray(sample);
bw = imbinarize(I);
imshow(bw)
bw = bwareaopen(bw,50);
imshow(label2rgb(L, @jet, [.5 .5 .5]))
hold on
for k = 1:length(B)
  boundary = B{k};
  plot(boundary(:,2), boundary(:,1), 'w', 'LineWidth', 2)
end
stats = regionprops(L,'Area','Centroid');
threshold = 0.98;
for k = 1:length(B)
  boundary = B{k};
  delta_sq = diff(boundary).^2;    
  perimeter = sum(sqrt(sum(delta_sq,2)));
  area = stats(k).Area;
  metric = 4*pi*area/perimeter^2;
  metric_string = sprintf('%2.2f',metric);
text(boundary(1,2)-35,boundary(1,1)+13,metric_string,'Color','k','FontSize',18,'FontWeight','bold');
end 
title(['Digitally processed output image for steemSTEM']);
</pre>

<p>More image processing algorithms using Matlab can be found <a href="https://ww2.mathworks.cn/training-schedule/image-processing-with-matlab?s_tid=srchtitle"> here</a>.</p>

<h3>References</h3>
<sub>[1] D.S. Sohi, S.S. Devgan, “Application to enhance the teaching and understanding of basic image processing techniques”, IEEE Southeastcon 2000, <a href="https://ieeexplore.ieee.org/document/845603//">iEEE Xplore</a>, Accessed on 25th May, 2018.
[2] Yi Lei, Yabo Chen, “Optimization of Specific Instruction Set Processor for Image Algorithms”, Procedia Computer Science, V. 131, P. 182-191, <a href="https://www.sciencedirect.com/science/article/pii/S1877050918305775"> ScienceDirect</a>, Accessed on 25th May, 2018.
[3] M. Ekstrom, “Digital Image Processing Techniques”, Textbook by <a href="https://www.elsevier.com/books/digital-image-processing-techniques/ekstrom/978-0-12-236760-1"> Elsevier</a>, Accessed on 26th May, 2018.
[4] A. McAndrew, “An Introduction to Digital Image Processing with Matlab”, Notes for SCM2511 Image Processing 1, Course document of <a href="http://www.math.hkbu.edu.hk/~zeng/Teaching/math3615/ls.pdf"> Victoria University of Technology</a>,  Accessed on 26th May, 2018.
[5] A. Mohan, S. Poobal, “Crack detection using image processing: A critical review and analysis”, Alexandria Engineering Journal, <a href="https://www.sciencedirect.com/science/article/pii/S1110016817300236"> ScienceDirect</a>, Accessed on 26th May, 2018.
[6] D N Kumar, “Image Processing Using MATLAB”, IISc, Bangalore, <a href="http://nptel.ac.in/courses/105108077/24"> Web document</a>, Accessed on 26th May, 2018.
[7] V. K.Pepper, C.Francom et al., “Objective characterization of airway dimensions using image processing”, International Journal of Pediatric Otorhinolaryngology, <a href="https://www.sciencedirect.com/science/article/pii/S0165587616303421"> ScienceDirect</a>, Accessed on 26th May, 2018.
</sub>

<h3>Software Resources</h3>
<p>
<li> <a href='https://opencv.org/'>OpenCV</a>  </li>
<li> <a href='https://imagej.net/Welcome'>ImageJ</a>  </li>
<li> <a href='https://ww2.mathworks.cn/en/products/matlab.html'>Matlab</a>  </li>
<li> <a href='https://www.dlcimaging.com.au/medical-digital-x-ray/human/pacs-system-software/efilm/'>eFilm</a>  </li>
<li>  <a href='https://www.adobe.com/products/photoshop.html'>Adobe Photoshop</a>  </li>
<li>  <a href='https://gimp.org/'>GIMP</a> </li>
</p>

<hr>
<h4>Many thanks to <a href='https://steemit.com/@gra/'>@gra</a> for the support in mentoring this article.</h4>
<hr size="10">

<sub> If you are interested in reading or writing Science, Technology, Engineering and Math related articles on steemit, feel free to join us in the steemSTEM community! Find more about steemSTEM from <a href="https://steemit.com/steemstem/@steemstem/being-a-member-of-the-steemstem-community">here</a>, or visit the official <a href="https://discord.gg/DYk4EvG">discord server</a>.</sub><p>

<center><img src='https://steemitimages.com/DQmeqXkd5iiKxkeTXDhAX3MW7V8bL59TF28pTtf57toNvDz/gear.gif'></center>
<center><sub>gif credit goes to @rocking-dave</sub> </center>

</div>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 189 others
properties (23)
authorchristinaa
permlinkdigital-image-processing-a-practical-approach
categorysteemstem
json_metadata{"community":"busy","app":"busy/2.4.0","format":"markdown","users":["terrylovejoy","jet","gra","steemstem","rocking-dave"],"links":["https://pixabay.com/en/car-communication-talk-self-talk-3100981/","https://en.wikipedia.org/wiki/Signal_processing","http://desktop.arcgis.com/en/arcmap/10.3/manage-data/raster-and-images/color-model-conversion-function.htm","https://www.mathworks.com/discovery/image-enhancement.html","https://en.wikipedia.org/wiki/Image_segmentation","https://pdfs.semanticscholar.org/presentation/5cd5/86d6bb4cf7bab42be0e99bf860f967bcd1f5.pdf","https://en.wikipedia.org/wiki/Image_restoration","https://en.wikipedia.org/wiki/Gaussian_filter","http://machinelearninguru.com/computer_vision/basics/convolution/image_convolution_1.html","https://steemit.com/@terrylovejoy"],"tags":["steemstem","busy","science","engineering","technology"]}
created2018-05-29 20:47:39
last_update2018-05-29 20:47:39
depth0
children22
last_payout2018-06-05 20:47:39
cashout_time1969-12-31 23:59:59
total_payout_value76.990 HBD
curator_payout_value24.330 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14,793
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,335,547
net_rshares25,217,941,480,558
author_curate_reward""
vote details (253)
@event-horizon ·
DIP is a vast field. You have pretty much summed up the whole idea of it in this post, brilliantly. 
Would you be writing more about it? Like discussing each phase of DIP? 
I started the series as well and have managed to done only two articles on it so far.
👍  
properties (23)
authorevent-horizon
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180530t131510161z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 13:15:12
last_update2018-05-30 13:15:12
depth1
children2
last_payout2018-06-06 13:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation5,759,852,439,635
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,438,247
net_rshares2,187,686,554
author_curate_reward""
vote details (1)
@christinaa ·
I think i will continue this series with more examples and explanation about DIP applications.. I saw ur latest post about encryption issues, its great..! 
And thanks for ut compliment, man.. :)
properties (22)
authorchristinaa
permlinkre-event-horizon-re-christinaa-digital-image-processing-a-practical-approach-20180531t001734671z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 20:17:39
last_update2018-05-30 20:17:39
depth2
children1
last_payout2018-06-06 20:17:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length194
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,492,065
net_rshares0
@event-horizon ·
That would be great. Looking forward to your next post. 
Thanks for the appreciation.
👍  
properties (23)
authorevent-horizon
permlinkre-christinaa-re-event-horizon-re-christinaa-digital-image-processing-a-practical-approach-20180531t081325755z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-31 08:13:27
last_update2018-05-31 08:13:27
depth3
children0
last_payout2018-06-07 08:13:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation5,759,852,439,635
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,564,400
net_rshares2,223,162,552
author_curate_reward""
vote details (1)
@florae ·
I guess I would say I understand a bit of DIP now but I stopped reading at the point where the coding started 😂. I know nothing about coding 
Thanks for sharing this @christinaa
👍  
properties (23)
authorflorae
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180530t032008047z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["christinaa"],"app":"steemit/0.1"}
created2018-05-30 03:20:12
last_update2018-05-30 03:20:12
depth1
children1
last_payout2018-06-06 03:20:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation5,538,115,413,196
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,376,995
net_rshares2,187,686,554
author_curate_reward""
vote details (1)
@christinaa ·
hehehe.... If u ever used a photo editing software in ur phone or pc, u understand DIP... :p Coding isnt always necessary in DIP, we have software like photoshop that can do a great image processing task..!
Thanks for ur compliments, dear.. :)
properties (22)
authorchristinaa
permlinkre-florae-re-christinaa-digital-image-processing-a-practical-approach-20180530t114454592z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 07:45:00
last_update2018-05-30 07:45:00
depth2
children0
last_payout2018-06-06 07:45:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length243
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,403,422
net_rshares0
@jfitmisc ·
$0.33
Wow @christinaa this is incredible! By reading your article about digital image processing, I've learned a lot about its uses in our world. I hope it improves, and I hope the picture quality improves. Keep up your personal and STEM articles! Good to have you in my feed!
👍  ,
properties (23)
authorjfitmisc
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180529t213851180z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["christinaa"],"app":"steemit/0.1"}
created2018-05-29 21:38:51
last_update2018-05-29 21:38:51
depth1
children1
last_payout2018-06-05 21:38:51
cashout_time1969-12-31 23:59:59
total_payout_value0.334 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation2,942,417,868,522
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,341,467
net_rshares83,808,650,668
author_curate_reward""
vote details (2)
@christinaa ·
Thanks man..!!! Good to see u reading my articles.. :)
properties (22)
authorchristinaa
permlinkre-jfitmisc-re-christinaa-digital-image-processing-a-practical-approach-20180530t112701478z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 07:27:12
last_update2018-05-30 07:27:12
depth2
children0
last_payout2018-06-06 07:27:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,401,651
net_rshares0
@joeyarnoldvn ·
This goes beyond my skills. I do some art, web design, photo editing, video editing, but I don't know a lot of code. This is interesting.
properties (22)
authorjoeyarnoldvn
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180603t035548196z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-06-03 03:55:48
last_update2018-06-03 03:55:48
depth1
children1
last_payout2018-06-10 03:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation51,486,608,572,928
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,995,144
net_rshares0
@christinaa ·
this is another way of image processing, what u do is also a way.. :p
properties (22)
authorchristinaa
permlinkre-joeyarnoldvn-re-christinaa-digital-image-processing-a-practical-approach-20180603t155307035z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-06-03 11:53:12
last_update2018-06-03 11:53:12
depth2
children0
last_payout2018-06-10 11:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,034,827
net_rshares0
@osariemen ·
This is very important for me. I really cant be exposing my reasons

Thanks for this...... I might be needing Matlab tutorials from you #winks
👍  
properties (23)
authorosariemen
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180530t145955553z
categorysteemstem
json_metadata{"tags":["steemstem","winks"],"app":"steemit/0.1"}
created2018-05-30 15:00:09
last_update2018-05-30 15:00:09
depth1
children2
last_payout2018-06-06 15:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation2,245,392,442,084
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,451,970
net_rshares2,093,083,892
author_curate_reward""
vote details (1)
@christinaa ·
hehe.. im not a master on matlab.. bt if u need something, feel free to contact me.. I would be glad to help if i can.. :)
properties (22)
authorchristinaa
permlinkre-osariemen-re-christinaa-digital-image-processing-a-practical-approach-20180531t001836083z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 20:18:42
last_update2018-05-30 20:18:42
depth2
children1
last_payout2018-06-06 20:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,492,204
net_rshares0
@osariemen ·
Alright
properties (22)
authorosariemen
permlinkre-christinaa-re-osariemen-re-christinaa-digital-image-processing-a-practical-approach-20180531t051206916z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-31 05:12:15
last_update2018-05-31 05:12:15
depth3
children0
last_payout2018-06-07 05:12:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation2,245,392,442,084
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,546,440
net_rshares0
@rbm ·
Although I have been photographing and processing photos for a very long time, I only knew a small part of what you wrote in the article. Congratulations !
👍  
properties (23)
authorrbm
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180530t052713427z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 05:27:15
last_update2018-05-30 05:27:15
depth1
children1
last_payout2018-06-06 05:27:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation2,622,153,494,059
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,389,637
net_rshares2,152,210,556
author_curate_reward""
vote details (1)
@christinaa ·
A photographer like u definitely have a vast experience on image processing things.. I just discussed about another way of processing the image..
Thanks btw.. :)
👍  
properties (23)
authorchristinaa
permlinkre-rbm-re-christinaa-digital-image-processing-a-practical-approach-20180530t114938939z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 07:49:45
last_update2018-05-30 07:49:45
depth2
children0
last_payout2018-06-06 07:49:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,403,910
net_rshares2,375,912,004
author_curate_reward""
vote details (1)
@simply777 ·
just awesome. i tried to figure out about image processing because i so much excited to do some research on lab for a IEEE publication. This article help me understanding the importance  image processing .This is an inspirational work for me. great work @christinaa
👍  
properties (23)
authorsimply777
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180601t101733344z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["christinaa"],"app":"steemit/0.1"}
created2018-06-01 10:17:36
last_update2018-06-01 10:17:36
depth1
children1
last_payout2018-06-08 10:17:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length265
author_reputation1,798,606,648
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,736,009
net_rshares2,152,210,556
author_curate_reward""
vote details (1)
@christinaa ·
thanks for ur compliment.... :)
properties (22)
authorchristinaa
permlinkre-simply777-re-christinaa-digital-image-processing-a-practical-approach-20180602t095522680z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-06-02 09:56:36
last_update2018-06-02 09:56:36
depth2
children0
last_payout2018-06-09 09:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,886,157
net_rshares0
@steemitboard ·
Congratulations @christinaa! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](http://steemitboard.com/@christinaa) Award for the number of upvotes

Click on any badge to view your Board of Honor.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

**Do not miss the [last announcement](https://steemit.com/steemitboard/@steemitboard/steemitboard-new-level-notifications) from @steemitboard!**

> Do you like **SteemitBoard**'s project? **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-christinaa-20180601t032732000z
categorysteemstem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-06-01 03:27:30
last_update2018-06-01 03:27:30
depth1
children0
last_payout2018-06-08 03:27:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length835
author_reputation38,975,615,169,260
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,694,654
net_rshares0
@terrylovejoy ·
This is very cool @christinaa and thanks for the shoutout!  I haven't got matlab but I'm may try to port some of your samples into C# or Python, so it's good you post the code blocks here.  I'm really looking forward to your series.

I will be showing my age here, but many of the image processing techniques started with film.  For example unsharp masking was done by taking out-of-focus copy of a negative and then using that as a mask in front of the original negative to sharpen a image.  Photographic dodging was another technique where you'd get a paper-clip with a bit of putty on the end as a blocking tool to fade out parts of the image when you printed it in an enlarger.  Of course hardly anyone would do it this way now...
👍  
properties (23)
authorterrylovejoy
permlinkre-christinaa-digital-image-processing-a-practical-approach-20180530t011850455z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["christinaa"],"app":"steemit/0.1"}
created2018-05-30 01:18:51
last_update2018-05-30 01:18:51
depth1
children3
last_payout2018-06-06 01:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length734
author_reputation15,797,973,031,321
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,364,389
net_rshares2,234,987,885
author_curate_reward""
vote details (1)
@christinaa ·
$0.15
Ur articles are really amazing, terry.. When I was writing about filters, I immediately recall about ur post and im glad to mention it here... I will continue this series of image processing hopefully... U can use OpenCV for ur C# or python codes..
U r absolutely right.. The idea of processing images to a desired level is really old concept.. As u said, back in the days of 'films' people used to modify images manually and thanks to the advancement of technology, we can do this with righting a few blocks of codes today...!
Thanks for ur compliments.. :)
👍  
properties (23)
authorchristinaa
permlinkre-terrylovejoy-re-christinaa-digital-image-processing-a-practical-approach-20180530t114202849z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 07:42:09
last_update2018-05-30 07:42:09
depth2
children2
last_payout2018-06-06 07:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.113 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length558
author_reputation2,651,600,466,382
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,403,149
net_rshares38,900,599,318
author_curate_reward""
vote details (1)
@terrylovejoy ·
Good tip about OpenCV !  Found Emgu which is a .NET port for OpenCV so looks like I might be playing with that in the near future.
properties (22)
authorterrylovejoy
permlinkre-christinaa-re-terrylovejoy-re-christinaa-digital-image-processing-a-practical-approach-20180530t101744174z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-05-30 10:17:45
last_update2018-05-30 10:17:45
depth3
children1
last_payout2018-06-06 10:17:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation15,797,973,031,321
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,419,517
net_rshares0
@utopian-io ·
#### Hi @christinaa!

Your post was upvoted by utopian.io in cooperation with steemstem - supporting knowledge, innovation and technological advancement on the Steem Blockchain.

#### Contribute to Open Source with utopian.io
Learn how to contribute on <a href="https://join.utopian.io">our website</a> and join the new open source economy.

**Want to chat? Join the Utopian Community on Discord https://discord.gg/h52nFrV**
properties (22)
authorutopian-io
permlink20180530t045427185z
categorysteemstem
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-05-30 04:54:27
last_update2018-05-30 04:54:27
depth1
children0
last_payout2018-06-06 04:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length424
author_reputation152,955,367,999,756
root_title"Digital Image Processing - a practical approach"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,386,378
net_rshares0