<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/258449</link>
    <title>MATLAB Central Newsreader - image processing</title>
    <description>Feed for thread: image processing</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 13 Aug 2009 17:45:04 -0400</pubDate>
      <title>image processing</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/258449#672973</link>
      <author>Mathew Thomas</author>
      <description>Hey All,&lt;br&gt;
&lt;br&gt;
I have a binary image. On the black portion of the image, I want some known pixels to be white...How to do I change these pixel colors to white??&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
Matt</description>
    </item>
    <item>
      <pubDate>Thu, 13 Aug 2009 22:25:05 -0400</pubDate>
      <title>Re: image processing</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/258449#673065</link>
      <author>Chaos </author>
      <description>&quot;Mathew Thomas&quot; &amp;lt;mathew99@gmail.com&amp;gt; wrote in message &amp;lt;h61jf0$7em$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hey All,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have a binary image. On the black portion of the image, I want some known pixels to be white...How to do I change these pixel colors to white??&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Matt&lt;br&gt;
&lt;br&gt;
take a class on image processing.&lt;br&gt;
&lt;br&gt;
if 2^bits=white then 0=black&lt;br&gt;
QED</description>
    </item>
    <item>
      <pubDate>Fri, 14 Aug 2009 01:44:02 -0400</pubDate>
      <title>Re: image processing</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/258449#673100</link>
      <author>Maider Marin</author>
      <description>a binary image is a matrix of 1s and 0s, so if you now the position of the pixels that you want to change then work it as a matrix&lt;br&gt;
X is the image of 50x50 if you want a 1 in position (x,y)= (3,5) then go X(3,5)=1 and you have your one in that position.&lt;br&gt;
If is more extense my first thought you can work with for loops in the same way&lt;br&gt;
for example if you want 1 in the portion from x=30 to 50 and y=10 to 15 then&lt;br&gt;
&lt;br&gt;
for i=30:50&lt;br&gt;
&amp;nbsp;&amp;nbsp;for j=10:15&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;X(i,j)=1&lt;br&gt;
&amp;nbsp;end &lt;br&gt;
end&lt;br&gt;
I hope is what you want to do:)&lt;br&gt;
&lt;br&gt;
&quot;Mathew Thomas&quot; &amp;lt;mathew99@gmail.com&amp;gt; wrote in message &amp;lt;h61jf0$7em$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hey All,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have a binary image. On the black portion of the image, I want some known pixels to be white...How to do I change these pixel colors to white??&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Matt</description>
    </item>
    <item>
      <pubDate>Fri, 14 Aug 2009 14:46:19 -0400</pubDate>
      <title>Re: image processing</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/258449#673231</link>
      <author>Mathew Thomas</author>
      <description>Thanks buddy...Appreciate your help...&lt;br&gt;
&lt;br&gt;
Matt&lt;br&gt;
&lt;br&gt;
&quot;Maider Marin&quot; &amp;lt;mayejudi@hotmail.com&amp;gt; wrote in message &amp;lt;h62fh2$l12$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; a binary image is a matrix of 1s and 0s, so if you now the position of the pixels that you want to change then work it as a matrix&lt;br&gt;
&amp;gt; X is the image of 50x50 if you want a 1 in position (x,y)= (3,5) then go X(3,5)=1 and you have your one in that position.&lt;br&gt;
&amp;gt; If is more extense my first thought you can work with for loops in the same way&lt;br&gt;
&amp;gt; for example if you want 1 in the portion from x=30 to 50 and y=10 to 15 then&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; for i=30:50&lt;br&gt;
&amp;gt;   for j=10:15&lt;br&gt;
&amp;gt;     X(i,j)=1&lt;br&gt;
&amp;gt;  end &lt;br&gt;
&amp;gt; end&lt;br&gt;
&amp;gt; I hope is what you want to do:)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &quot;Mathew Thomas&quot; &amp;lt;mathew99@gmail.com&amp;gt; wrote in message &amp;lt;h61jf0$7em$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Hey All,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I have a binary image. On the black portion of the image, I want some known pixels to be white...How to do I change these pixel colors to white??&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Thanks,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Matt</description>
    </item>
    <item>
      <pubDate>Fri, 14 Aug 2009 14:49:18 -0400</pubDate>
      <title>Re: image processing</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/258449#673233</link>
      <author>Mathew Thomas</author>
      <description>Newbie?? CLueless?? you have issues man!!! Please dont ever try to help others, because you definitely dont want to..... And what ever or whereevr my programming skills lie, its non of your bussiness sir....Take care..&lt;br&gt;
&lt;br&gt;
Matt.&lt;br&gt;
&lt;br&gt;
&quot;Chaos&quot; &amp;lt;rothko.fan@gmail.com&amp;gt; wrote in message &amp;lt;h623s1$6vm$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mathew Thomas&quot; &amp;lt;mathew99@gmail.com&amp;gt; wrote in message &amp;lt;h61jf0$7em$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Hey All,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; I have a binary image. On the black portion of the image, I want some known pixels to be white...How to do I change these pixel colors to white??&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Thanks,&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Matt&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; take a class on image processing.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; if 2^bits=white then 0=black&lt;br&gt;
&amp;gt; QED</description>
    </item>
  </channel>
</rss>

