Skip to content

It is not clear that INEQR takes a multi-dimensional pixel_vals list as input #74

Open
@SaashaJoshi

Description

In INEQR, the pixel_pos_binary needs to be a binary string y_coord+x_coord long. However, currently, the code misrepresents the binary with extra 0 padding.

for y_index, y_val in enumerate(self.pixel_vals):
for x_index, x_val in enumerate(y_val):
pixel_pos_binary = (
f"{y_index:0>{self.y_coord}b}{x_index:0>{self.x_coord}b}"
)

Metadata

Assignees

No one assigned

    Labels

    design-issueThis is a design issue and requires major changedocumentationImprovements or additions to documentation

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions