Metadata-Version: 2.1
Name: BitArray2D
Version: 2.1
Summary: A memory-efficient packed representation for 2D bit arrays (This is a renamed version of the Bit2DArray module
Home-page: http://RVL4.ecn.purdue.edu/~kak/dist2d/BitArray2D-2.1.html
Download-URL: http://RVL4.ecn.purdue.edu/~kak/dist2d/BitArray2D-2.1.tar.gz?download
Author: Avinash Kak
Author-email: kak@purdue.edu
Maintainer: Avinash Kak
Maintainer-email: kak@purdue.edu
License: Python Software Foundation License
Keywords: 2D bit array,binary image,2D bit field
Platform: All platforms
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python

 

**Version 2.1** is a renamed version of the Bit2DArray module (Version 2.0).

**Version 2.1** is Python 3.x compliant.  It should work with both Python
2.x and Python 3.x.

This module utilizes the facilities of the **BitVector** class (Version 3.0
or higher) to create a memory efficient representation for 2D bit arrays.

The class supports the following operators/methods:

-    __str__
-    __getitem__
-    __setitem__
-    __getslice__
-    __eq__
-    __ne__
-    __and__
-    __or__
-    __xor__
-    __invert__
-    deep_copy
-    size
-    read_bit_array_from_char_file
-    read_bit_array_from_binary_file
-    write_bit_array_to_char_file
-    write_bit_array_to_packed_binary_file
-    shift
-    dilate
-    erode

          
