Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read/Write binary file
#1
I have a binary file that contains 32 bit floats. I would like to read the file into a matrix, rotate the matrix, and then write the matrix to a file.

In the original file the values would be arranged like this:
a0, b0, a1, b1, a2, b2, a3, b3...aN, bN
where a,b can be thought of as rows and 1, 2, 3 as columns.

In the resulting file the values would be arranged like this:
a0, a1, a2, a3...aN, b0, b1, b2, b3...bN

I'm beginning to think I might need to use the array library to read and write the files, and write some C code to do the rotation. Does anyone know of other ways?
Reply
#2
I don't think it's nearly as complicated as you think.
Please supply a sample file.
Reply
#3
I don't know how to provide a sample file, so here is some code to generate the sample file and demonstrate the kind of manipulation I need.
import numpy as np
from array import array

a = array('f', [x for _ in range(10) for x in range(4)])
with open('sample_order.bin', 'wb') as file:
    a.tofile(file)

a = array('f')
with open('sample_order.bin', 'rb') as file:
    a.fromfile(file, 40)
print('Sample order file', a, sep='\n')

b = np.array(a)
print('As numpy array', b, sep='\n')
c = b.reshape((10, 4))
print('As a matrix', c, sep='\n')
d = c.transpose()
print('As matrix in channel order', d, sep='\n')
e = array('f', d.flatten())
print('Channel order file', e, sep='\n')

with open('channel_order.bin', 'wb') as file:
    e.tofile(file)
I start with an array like this:
0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3

I want to convert this to:
0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3

I am doing this by turning it into a matrix, transposing the matrix and then flattening the matrix, I know there has to be a better way.
Reply
#4
for 2d array, I'd use something like below

But you have a single dimension array, so you're way ahead of me on this.

import numpy as np
from scipy.ndimage.interpolation import rotate
import os

# make sure file can be found in script directory
os.chdir(os.path.abspath(os.path.dirname(__file__)))

def rotate_and_save(infilename, outfilename, rotation_angle_degrees=90):    
    orig_array = np.fromfile(infilename, dtype=np.int64)
    print(f"\noriginal array\n{orig_array}")
    new_array = rotate(orig_array, angle=rotation_angle_degrees)
    print(f"\nnew array\n{new_array}")
    np.tofile(outfilename, dtype=np.int64)

def main():
    # Use any desired angle
    rotate_and_save('channel_order.bin', 'rotated_channel_order.bin', 
        rotation_angle_degrees=180)

if __name__ == '__main__':
    main(
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Last record in file doesn't write to newline gonksoup 3 402 Jan-22-2024, 12:56 PM
Last Post: deanhystad
  How Write Part of a Binary Array? Assembler 1 338 Jan-14-2024, 11:35 PM
Last Post: Gribouillis
  Recommended way to read/create PDF file? Winfried 3 2,863 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  write to csv file problem jacksfrustration 11 1,498 Nov-09-2023, 01:56 PM
Last Post: deanhystad
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 1,420 Nov-09-2023, 10:56 AM
Last Post: mg24
Question Special Characters read-write Prisonfeed 1 606 Sep-17-2023, 08:26 PM
Last Post: Gribouillis
  read file txt on my pc to telegram bot api Tupa 0 1,096 Jul-06-2023, 01:52 AM
Last Post: Tupa
  parse/read from file seperated by dots giovanne 5 1,102 Jun-26-2023, 12:26 PM
Last Post: DeaD_EyE
  Formatting a date time string read from a csv file DosAtPython 5 1,248 Jun-19-2023, 02:12 PM
Last Post: DosAtPython
  How do I read and write a binary file in Python? blackears 6 6,463 Jun-06-2023, 06:37 PM
Last Post: rajeshgk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020