CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Eri523

Search: Search took 0.06 seconds.

  1. Replies
    10
    Views
    4,730

    Re: Saving an array as a file

    Don't get deterred by all that math stuff. As I said, for the purpose of your image lookup you can simply ignore most of that. In this context, just think of "matrix" as a fancy term for...
  2. Replies
    10
    Views
    4,730

    Re: Saving an array as a file

    You're welcome. :)



    In this case, depending on your actual coverage of the array and its distribution, it may be advatageous to treat your array as a sparse matrix. (... extending what's...
  3. Replies
    10
    Views
    4,730

    Re: Saving an array as a file

    Some more thoughts...

    Assuming your files are named 0.bmp to 16777215.bmp (file number calculated as (i << 16) + (j << 8) + k), the average file name length is 11.3 characters. This amounts to an...
  4. Replies
    10
    Views
    4,730

    Re: Saving an array as a file

    If the file is not meant to be exchanged with other programs, IOW just gets written out by your program and read back in by the very same program, the most straightforward approach probably is simply...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured