The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
21 views

Packing characters into bits?

I am trying to pack characters into bits in terms of 0's and 1's. I have looked up many websites about bit-packing but I did not get any of them. I just want a simple idea about bit-packing, and how ...
1
vote
1answer
25 views

Executable Packer (decompression/decryption stub)

I am working on an executable Packer & I have done compression & Encryption part so far. Now I have to store decompression/decryption stub/routine in the compressed file. My question is that ...
0
votes
0answers
13 views

steganography and packing the binary

I have a weird question. today, there are many tools and researches for packing the binary(mostly x86) for obfuscation, and it works good. but is there any known tool, research or project to hide ...
0
votes
1answer
244 views

Packing fixed-size rectangles inside a circle with the biggest “zoom”

I need an algorithm to place a set of N rectangles inside a circle of radius R, so that they are scaled up to the biggest possible size that doesn't exceed the border of the circle. I'm still working ...
-1
votes
1answer
55 views

Exact algorithm for bin packing [closed]

I am working on some heuristic algorithms for bin packing and want to have some references to compare these with each other. Is there any exact algorithm implementations for small number of bins in ...
0
votes
0answers
25 views

Bit packing blocks in Simulink?

Could anyone please explain to me what the bit packing blocks in Simulink do? I am currently learning programming, Simulink and control theory so I am not very proficient. I tried using the help ...
1
vote
0answers
18 views

“Packing” widgets with coordinates in GTK+

I am just wondering if it's possible to position widgets with coordinates corresponding to the display rather than packing them in GTK+? For example, say I have a screen of resolution 800*600. I want ...
3
votes
4answers
716 views

fitting n variable height images into 3 (similar length) column layout

I'm looking to make a 3-column layout similar to that of piccsy.com. Given a number of images of the same width but varying height, what is a algorithm to order them so that the difference in column ...
0
votes
2answers
64 views

Copying a struct with dynamic array into a buffer in c

I want to manually build a dns query to the dns sever using socket APIs (it's part of the project and can not be changed). So I want to copy a struct like: typedef struct { uint16_t ...
0
votes
2answers
67 views

Bin packing bruteforce method

I need to make program that solves bin packing problem, but I already made first fit and greedy algorithms, but my lecturer says in some cases it won't find the minimal solution to the problem. So i ...
0
votes
0answers
29 views

Creating and rotating ellipses in python, whilst checking for collisions

I've managed to create a bit of code that creates various discs and checks for collisions, but how would I go about doing it for ellipses instead? height = 100 width= 100 circles = 15 radius = 4 xL ...
0
votes
3answers
292 views

Specify struct packing in C# implementation of a COM interface

Is it possible to specify the struct packing size in a C# implementation of a COM interface? (I know how to do it when the struct is defined on the managed side, but my question is about when it's ...
2
votes
3answers
1k views

Bin Packing - Brute force recursive solution - How to make it faster

I have an array which contains a list of different sizes of materials : {4,3,4,1,7,8} . However, the bin can accomodate materials upto size 10. I need to find out the minimum number of bins needed to ...
0
votes
1answer
95 views

Is it possible to pack elements close together to optimize space usage?

Is it possible to get the elements in the picture below to pack closer together somehow? Preferably using css, but javascript solutions are also welcome if that's not possible. I'd like all the ...
0
votes
0answers
12 views

Is there a simple way to assure that a 2d square packing operation is possible?

I'm making a game where things are simulated on a lower resolution when farther away from the player, and (square shaped, arbitrary size) entities can share the same square on a grid, until the player ...
11
votes
4answers
787 views

Packing arbitrary polygons within an arbitrary boundary

I was wondering if anybody could point me to the best algorithm/heuristic which will fit my particular polygon packing problem. I am given a single polygon as a boundary (convex or concave may also ...
0
votes
1answer
231 views

Shelf packing issue

I'm faced with a Shelf Packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is NP hard I ...
1
vote
2answers
117 views

“Problem9”: Packing a list

I'm learning f# with no prior functional programming background - starting to make progress but been stuck on this one. Could anybody please help me understand the solution to Problem 9 of the 99 f# ...
1
vote
1answer
121 views

Packing Rectangles IOI 95

I'm working my way through the usaco training pages and came across this problem http://olympiads.win.tue.nl/ioi95/task/pack.html I don't understand the example input and output i.e. I cant find which ...
-1
votes
2answers
81 views

How can I build up the densely packing spheres, starting from a single one, in C++? [closed]

Let's assume that I start out with a single sphere of a defined radius R, and an array of three elements, containing the cartesian coordinates: double vecpos[3]; vecpos[0]= 0.0; vecpos[1]= 0.0; ...
4
votes
1answer
159 views

Reverse Rectangle Packing

I have a connected shape that consists of squares put together, e.g. take a squared paper and draw a line along the existing lines that ends at its beginning and does not cross itself. The goal is ...
0
votes
1answer
116 views

P/Invoke of an enum

I wanted to call the DISM API from C# to find out which optional Windows features are installed. DISM functions don't appear on the well-known pinvoke.net site, so I started figuring it out with the ...
1
vote
0answers
47 views

Are there any free implementations of an online 2D orthogonal strip packing algorithm?

I hasten to add that "online" here refers to a type of algorithm that deals with one object at a time, and doesn't analyze the entire collection before placing them. I have a lot of images of ...
3
votes
1answer
574 views

Packing different sized circles into rectangle - d3.js

I was trying to pack circles of different sizes into a rectangular container, not packing in circular container that d3.js bundled with, under d3.layout.pack. here's the layout I want to achieve: ...
2
votes
2answers
165 views

Numpy unpack binary string into a single variable

In Numpy, I need to unpack some binary data into a single variable. In the past I've been unpacking it using the 'fromstring' function in Numpy and extracting the first element. Is there a way I can ...
1
vote
1answer
1k views

circle packing - java

I have a task to draw a circle and then fill in with the most amount of circles without touching the sides. I can draw the circle, and I can make loops to pack the circle in a hexagonal/honeycomb ...
1
vote
0answers
44 views

How to most efficiently fill a printed page with 1 main image and scaled padding images?

I am printing panoramas with aspect ratios between 1.7:1 and 8:1. A common case is an image which scales to 18" x 8" leaving 4 inches on a standard 12x18 inch page. Paper only comes in so many sizes, ...
3
votes
1answer
87 views

How to pack my Python 3 program so I can release it

I'm using Pygame. How and which files should I consider including with the script so everyone can run it? I'm using python 3.2 therefore py2exe doesn't work.
0
votes
1answer
144 views

Packing in Python and Unpacking in C

I'm trying to pack integers as bytes in python and unpack them in C. So in my python code I have something like testlib = ctypes.CDLL('/something.so') testlib.process(repr(pack('B',10))) which ...
1
vote
0answers
167 views

layout algorithm for tightly-packed image thumbnails

I'm working on an image gallery and I'd like to tightly pack the image thumbnails. The thumbnails are: different aspect ratios available at the same source resolution (longest edge 256 pixels) ...
0
votes
0answers
33 views

Does union require explicit packing?

I came across the following piece of code. I was wonder whether we need to specify that the union is packed ? Will the compiler ever do packing for unions ? If so, could u give some examples ? ...
7
votes
9answers
3k views

Getting different header size by changing window size

I have a C++ program representing a TCP header as a struct: #include "stdafx.h" /* TCP HEADER 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ...
67
votes
8answers
12k views

Algorithm needed for packing rectangles in a fairly optimal way

Ive got a bunch of rectangular objects which I need to pack into the smallest space possible (the dimensions of this space should be powers of two). I'm aware of various packing algorithms that will ...
6
votes
4answers
2k views

Union and struct packing problem

I'm writing some software where each bit must be exact(it's for the CPU) so __packed is very important. typedef union{ uint32_t raw; struct{ unsigned int present:1; unsigned int rw:1; unsigned ...
1
vote
0answers
141 views

Packing Rectangles into a polygon using JavaScript

I need to pack n rectangles (n<10) of different size into a simple polygon. I am aware of two possible solutions: Bin packing rectangles into a rectangle. Then the problem becomes finding a ...
7
votes
4answers
2k views

Fitting rectangles together in optimal fashion

I was wondering if anyone knows of any algorithms suited to fitting together N number of rectangles of unknown size into the smallest possible containing rectangle. By optimal I mean with reducing ...
0
votes
1answer
133 views

How do you pack a 3-floats (space vector) into 4 bytes (pixel)?

I've successfully packed floats with values in [0,1] without losing too much precision using: byte packedVal = floatVal * 255.0f ; // [0,1] -> [0,255] Then when I want to unpack the packedVal ...
4
votes
2answers
418 views

Packing problem

I want to write a little helper utility to organize my digitized audiobooks collection. I have a set of folders which I need to write to CDs. The folders can not be split: each folder goes onto one ...
0
votes
1answer
35 views

CSS breaks when packed

Let's say I have about 10 css files on my site. I wanted to combine them into one. But when I combining them(just "concatenating" files, in order they are included into html), my style/layout breaks. ...
8
votes
8answers
3k views

C++ Data Member Alignment and Array Packing

During a code review I've come across some code that defines a simple structure as follows: class foo { unsigned char a; unsigned char b; unsigned char c; } Elsewhere, an array of these ...
2
votes
1answer
273 views

Packing attributes in a texture, deferred rendering

I'm rolling a deferred shader pipe, and due to the need to keep the G-buffers in a unified format a need to compress attributes is needed. I've sadly been unable to find some good information on how ...
1
vote
4answers
808 views

How to pack a hexadecimal value in an unsigned char variable in a C program?

I have a hexadecimal value "F69CF355B6231FDBD91EB1E22B61EA1F" in a string and I am using this value in my program by hardcoding the value in an unsigned char variable like this: unsigned char a[] = { ...
1
vote
0answers
33 views

Packaging java application for distribution

I am writing a small application. I like to distribute it to linux and windows so i am planning to creating executable's. I know there are some libraries available like launch4j Which is the best ...
9
votes
5answers
354 views

What tools are there to cross-create an OSX installer for a python package?

Distutils offers existing solutions to build a Windows self-extracting EXE. Notably, I can create the package even if I'm on Ubuntu (which is essential given our automated build process). How do I ...
3
votes
5answers
740 views

Packing 32bit floats into 30 bits (c++)

Here are the goals I'm trying to achieve: I need to pack 32 bit IEEE floats into 30 bits. I want to do this by decreasing the size of mantissa by 2 bits. The operation itself should be as fast as ...
4
votes
2answers
761 views

What's an elegant algorithm for fitting differently sized rectangles into a circle?

I have a bunch of rectangles of variable size which I need to fit together roughly into a circle, presumably with the largest ones at the center. NB. The circle is not of a fixed size - that's just ...
3
votes
3answers
271 views

Are there any executable packers (like UPX) for iOS?

Just wondering. Or is it even technically impossible to write me, e.g. because iOS may prevent jumps to the area where the unpacked code resides?
1
vote
2answers
295 views

Packing bitmaps

I am trying to pack font glyph images into a single texture. The bitmaps are 1 byte per pixel monochromatic and I wish to pack them all together onto 1 texture. I am able to calculate the minimum ...
12
votes
4answers
6k views

Packing rectangular image data into a square texture

I have N items of 2D image data that will be rectangular and I want to pack them into a single power of 2 texture as efficiently as possible. A simple non-efficient and naive implementation of an ...
10
votes
2answers
554 views

Algorithm/approximation for combined independent set/hamming distance problem

Input: Graph G Output: several independent sets, so that the membership of a node to all independent sets is unique. A node therefore has no connections to any node in its own set. Here is an example ...

1 2 3