Sign in

username:

password:



Not a member?

Search imagedsp



Search tips

Subscribe to imagedsp



imagedsp by Keywords

Error Concealment | JPEG | MPEG-4 | Wavelet | YUV

Sponsor

NEW! TMS320C6474: 3x the performance. 1/3 the cost. Three 1 GHz cores on 1 chip.

Discussion Groups

Discussion Groups | Image Signal Processing | xray image processing

Technical Discussions related to Image Processing (image coding, compression, digital effects, mpeg, etc)

  

Post a new Thread

xray image processing - zeeshan shakir - Jul 4 6:27:00 2001



hi there all

any one there is working on xray image processing.
i need image subtaction algorithm in matlab.

smiles
zeeshan

__________________________________________________





(You need to be a member of imagedsp -- send a blank email to imagedsp-subscribe@yahoogroups.com )

Re: xray image processing - Vinod Pathangay - Jul 4 16:21:00 2001


shakir:

jus subtract the arrays and normalize the values for the display range....

like...

A = imread('file1.jpg');
B = imread('file2.jpg');

Im assuming A & B are of same dimensions

result = double(A)- double(B);

then normalize result for diplaying... --vinod

On Tue, 3 Jul 2001, zeeshan shakir wrote:

> hi there all
>
> any one there is working on xray image processing.
> i need image subtaction algorithm in matlab.
>
> smiles
> zeeshan






(You need to be a member of imagedsp -- send a blank email to imagedsp-subscribe@yahoogroups.com )

Re: xray image processing - Jeff Brower - Jul 5 2:28:00 2001

Shakir-

Or exclusive-or (XOR) the data, which might handle color/gray values and avoid
the normalization step. Any pixels in the 2 images that are the same will
become zero.

Jeff Brower
Signalogic

On Wed, 4 Jul 2001, Vinod Pathangay <> wrote:
>
>shakir:
>
>jus subtract the arrays and normalize the values for the display range....
>
>like...
>
>A = imread('file1.jpg');
>B = imread('file2.jpg');
>
>Im assuming A & B are of same dimensions
>
>result = double(A)- double(B);
>
>then normalize result for diplaying... >--vinod >
>
>On Tue, 3 Jul 2001, zeeshan shakir wrote:
>
>> hi there all
>>
>> any one there is working on xray image processing.
>> i need image subtaction algorithm in matlab.
>>
>> smiles
>> zeeshan




(You need to be a member of imagedsp -- send a blank email to imagedsp-subscribe@yahoogroups.com )