Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by newprogram

  1. newprogram

    inorder file name

    Hi, Here are my codes. Thanks again. #!/usr/local/bin/perl -w if ($#ARGV < 0) { print "$0 directory. $#ARGV\n"; exit; } my $dir = $ARGV[0]; print $dir, "\n"; unless (-e $ARGV[0]) { print "$ARGV[0] does not...
  2. newprogram

    inorder file name

    Hi, All, I have the dataset like this: the question is: how to insert m2 between m1 and m10, insert m3 between m2 and m10 insert m4 between m3 and m10.... orinigal dataset: m1 m15 m20 m26 m31 m37 m10 m16...
  3. newprogram

    debug codes

    Hi, PaulTEG, I have 2 files, one is a raw images(.raw file) another one is a text file with header information for these images. I already converted to big-endian(background is black), but I need to invert color for these grayscle images with black background. Thanks again.
  4. newprogram

    debug codes

    Hi, all, Please help me to check the codes. I am trying to convert raw images to big-endian data and then inverted these images. But I didn't get inverted images. Thanks in advances, ******************************* The following are my codes: #!/local/os/bin/perl my $headerFile; my...
  5. newprogram

    how convert .raw file to big endian dataset

    Hi, I am tring to convert MRI image .raw file to big endian dataset but I don't know how to handle this using perl. Thanks in advance, Below are the images information: ObjectType = Image NDims = 3 BinaryData = True BinaryDataByteOrderMSB = False TransformMatrix = 1 0 0 0 0 -1 0 1 0...
  6. newprogram

    converting image

    Hi, They are MRI medical images. I don't know how to attach these images from this site. Thanks,
  7. newprogram

    converting image

    Hi, I am trying to convert these image to the big endian 2D images. The following are image informations: ObjectType = Image NDims = 3 BinaryDataByteOrderMSB = False TransformMatrix = 1 0 0 0 0 -1 0 1 0 offset = -88.2439 -49.4819 81.8049 CenterOfRotation = 0 0 0 AnatomicalOrientation = RPI...
  8. newprogram

    statistical analyses by group

    Hi, All, I am tring to do descriptive analyses which include mean, median, minimum, maximum, standard deviation/errors by the following Group: GROUP 0 (control CHD=congenitial heart disease) GROUP 0&3 together (all CHD) GROUP 1&2 together (all preterm) GROUP 1 (preterm no lesion) GROUP 2...

Part and Inventory Search

Back
Top