Example #1
0
bool validate_move_no_conflict(board_t * board, piece_info_t * move){
    uintptr_t i;

    if (!valid_coord(move->x, move->y)){
        return false;
    }

    piece_cell_t * cells;
    uintptr_t sz;
    cells = piece_info_points(move, &sz);

    for (i = 1;i < sz;i++){
        int8_t x,y;
        x = cells[i].x;
        y = cells[i].y;

        if (!valid_coord(x, y) || occupied(board, x, y)){
            free(cells);
            return false;
        }
    }
    free(cells);

    return true;
}
Example #2
0
//pair<double, double> --> current energy seam, gradient value
std::vector<std::vector<std::pair<double, double> > > calculate_gradient(std::vector<std::vector<double> > luminosity_map) {
    std::vector<std::vector<std::pair<double, double> > > gradient_map(luminosity_map.size(), 
                                                                       std::vector<std::pair<double, double> >(luminosity_map[0].size(),
                                                                                           std::pair<double, double>(DBL_MAX, DBL_MAX)));
    int width = luminosity_map[0].size();
    int height = luminosity_map.size();
    for (int i = 0; i < luminosity_map.size(); i++) {
        for (int j = 0; j < luminosity_map[i].size(); j++) {
            double current_val = luminosity_map[i][j];

            double u = valid_coord(std::pair<int, int>(i - 1, j), width, height) ? luminosity_map[i - 1][j] : current_val;
            double d = valid_coord(std::pair<int, int>(i + 1, j), width, height) ? luminosity_map[i + 1][j] : current_val;
            double l = valid_coord(std::pair<int, int>(i, j - 1), width, height) ? luminosity_map[i][j - 1] : current_val;
            double r = valid_coord(std::pair<int, int>(i, j + 1), width, height) ? luminosity_map[i][j + 1] : current_val;

            double dx = r - l;
            double dy = u - d;
            gradient_map[i][j] = std::pair<double, double>(DBL_MAX, pythagorean(dx, dy));
            if (i == 0) {
                gradient_map[i][j].first = gradient_map[i][j].second;
            }
        }
    }
    return gradient_map;
}
Example #3
0
void
RiscosGui::setInvalidatedRegion(const rect& bounds)
{
    // Note: Bounds coordinates are in TWIPS

#ifdef RENDERER_AGG
    // forward to renderer
    _renderer->set_invalidated_region(bounds);

    if (bounds.width() > 1e10f) {
        // Region is entire screen. Don't convert to integer as this will
        // overflow.

        m_draw_minx = 0;
        m_draw_miny = 0;
        m_draw_maxx = _width - 1;
        m_draw_maxy = _height - 1;
    } else {
        // remember for renderBuffer()
        _renderer->world_to_pixel(&m_draw_minx, &m_draw_miny,
                                  bounds.get_x_min(), bounds.get_y_min());
        _renderer->world_to_pixel(&m_draw_maxx, &m_draw_maxy,
                                  bounds.get_x_max(), bounds.get_y_max());

        // add two pixels because of anti-aliasing...
        m_draw_minx = valid_coord(m_draw_minx - 2, _width);
        m_draw_miny = valid_coord(m_draw_miny - 2, _height);
        m_draw_maxx = valid_coord(m_draw_maxx + 2, _width);
        m_draw_maxy = valid_coord(m_draw_maxy + 2, _height);
    }

//    log_debug("DrawRect: (%i, %i), (%i, %i)\n",
//            m_draw_minx, m_draw_miny, m_draw_maxx, m_draw_maxy);
#endif
}
Example #4
0
void flood(cimg_library::CImg<unsigned char> &draw_image, std::vector<std::vector<int> > &energy_map, char *color, int val, int x, int y) {
    if (!valid_coord(std::pair<int, int>(x, y), energy_map[0].size(), energy_map.size())) return;
    if (energy_map[x][y] == val) return;

    draw_image.draw_point(y, x, color);
    energy_map[x][y] = val;

    flood(draw_image, energy_map, color, val, x - 1, y); 
    flood(draw_image, energy_map, color, val, x + 1, y); 
    flood(draw_image, energy_map, color, val, x, y - 1); 
    flood(draw_image, energy_map, color, val, x, y + 1); 
}
Example #5
0
bool occupied(board_t * board, int8_t x, int8_t y){
    uint32_t mask;
    
    if (!valid_coord(x,y)){
        return false;
    }
    
    mask = 1 << x;
    if (board->occupied[y] & mask){
        return true;
    }

    return false;
}
void W3GActionList::addPointEvent(uint32 time, uint32 id, float x, float y)
{
  if (!quickLoad)
    action_times.push(time);
  if (id == ID_RIGHTCLICK)
  {
    if (!quickLoad && valid_coord(x) && valid_coord(y))
    {
      int prev = actions.length() - 1;
      if (prev >= 0 && actions[prev].time < time)
      {
        if (prev > 0)
          fix_vector(time - actions[prev].time, actions[prev - 1].x, actions[prev - 1].y,
            actions[prev].x, actions[prev].y);
        Movement& m = actions.push();
        m.state = STATE_ALIVE;
        m.time = time;
        m.x = x;
        m.y = y;
      }
      if (time > spawn_time && time < spawn_time + 180000)
      {
        lane_count++;
        lane_x += x;
        lane_y += y;
      }
    }
    acounter[ACTION_RIGHTCLICK]++;
  }
  else if (id <= ID_HOLD)
    acounter[ACTION_BASIC]++;
  else if (id >= ID_GIVE && id <= ID_USEITEM6)
    acounter[ACTION_ITEM]++;
  else
    acounter[ACTION_ABILITY]++;
}
Example #7
0
//pair<double, double> --> current energy seam, gradient value
double calculate_seam(std::vector<std::vector<std::pair<double, double> > > &gradient_map, int x, int y) {
    if (x == 0) return gradient_map[x][y].second;
    if (gradient_map[x][y].first < DBL_MAX) return gradient_map[x][y].first;

    std::vector<double> res(3, DBL_MAX);

    for (int i = -1; i <= 1; i++) {
        if (valid_coord(std::pair<int, int>(x - 1, y + i), gradient_map[0].size(), gradient_map.size())) {
            res[i + 1] = calculate_seam(gradient_map, x - 1, y + i);
        }
    }

    gradient_map[x][y].first = gradient_map[x][y].second + std::min(std::min(res[0], res[1]), res[2]);

    return gradient_map[x][y].first;
}
Example #8
0
role_t occupied_by(board_t * board, int8_t x, int8_t y){
    if (!valid_coord(x,y)){
        return ROLE_NONE;
    }

    if (!occupied(board, x, y)){
        return ROLE_NONE;
    }

    uint32_t mask;
    mask = 1 << x;
    if (board->cellcolors[y] & mask){
        return ROLE_BLACK;
    }
    return ROLE_WHITE;
}
Example #9
0
//returns list of coordinates of pixels to remove
std::vector<std::pair<int, int> > trace_seam(std::vector<std::vector<std::pair<double, double> > > gradient_map, int index) {
    std::vector<std::pair<int, int> > toremove;
    for (int i = gradient_map.size() - 1; i >= 0; i--) {
        toremove.push_back(std::pair<int, int>(i, index));
        int loc = -1;
        double val = DBL_MAX;
        for (int j = -1; j <= 1; j++) {
            if (valid_coord(std::pair<double, double>(i - 1, index + j), gradient_map[0].size(), gradient_map.size())) {
                if (gradient_map[i - 1][index + j].first < val) {
                    val = gradient_map[i - 1][index + j].first;
                    loc = index + j;
                }
            }
        } 
        index = loc;
    }
    return toremove;
}
Example #10
0
int main(int argc, char** argv) {
    if (argc < 2) {
        std::cout << "Not enough arguments, Usage: ./seamcarver <path_to_image> <number_of_seams_to_carve>" << "\n";
        std::cout << "If number of seams to carve is left out, the necessary size for object removal will be used instead" << "\n";
        return 1;
    }

    std::cout << "Loading image" << "\n";
    std::string fname = argv[1];
    cimg_library::CImg<unsigned char> image(fname.c_str());
    cimg_library::CImg<unsigned char> draw_image(fname.c_str()); //TODO figure out if i can undo the draw without having second copy

    std::cout << "Calculating luminosity" << "\n";
    std::vector<std::vector<double> > luminosity_map = calculate_luminosity(image);

    std::cout << "Setting energy of image" << "\n";
    std::vector<std::vector<int> > energy_map(luminosity_map.size(), std::vector<int>(luminosity_map[0].size(), 0));
    cimg_library::CImgDisplay energy(draw_image, "Manually set special energy");

    char red[3] = { 255, 0, 0 };
    char green[3] = { 0, 255, 0 };
    int cursor_size = 1;
    while (!energy.is_closed()) {
        energy.wait();
        if (energy.button()) {
            std::vector<char> current_color;
            int energy_val = 0;
            if (energy.button() & 1) { // left click
                if (energy.is_keySPACE()) {
                    flood(draw_image, energy_map, red, -1, energy.mouse_y(), energy.mouse_x());
                    energy_val = -2;
                } else {
                    current_color = std::vector<char>(red, red + 3);
                    energy_val = -1;
                }
            } else if (energy.button() & 2) { // right click
                if (energy.is_keySPACE()) {
                    flood(draw_image, energy_map, green, 1, energy.mouse_y(), energy.mouse_x());
                    energy_val = -2;
                } else {
                    current_color = std::vector<char>(green, green + 3);
                    energy_val = 1;
                }
            }
            if (energy_val != -2) {
                for (int i = -cursor_size; i <= cursor_size; i++) {
                    for (int j = -cursor_size; j <= cursor_size; j++) {
                        if (valid_coord(std::pair<int, int>(energy.mouse_y() + i, energy.mouse_x() + j), energy_map[0].size(), energy_map.size())) {
                            energy_map[energy.mouse_y() + i][energy.mouse_x() + j] = energy_val;
                            draw_image.draw_point(energy.mouse_x() + j, energy.mouse_y() + i, &current_color[0]);
                        }
                    }
                }
            }
        }
        draw_image.display(energy);
    } 

    //TODO
    //change so im_vec stores only pairs of coords, then we copy directly from image to new image?
    std::vector<std::vector<std::vector<char> > > im_vec;
    for (int i = 0; i < image.height(); i++) {
        std::vector<std::vector<char> > row;
        for (int j = 0; j < image.width(); j++) {
            std::vector<char> color;
            color.push_back(image.atXY(j, i, 0, 0));
            color.push_back(image.atXY(j, i, 0, 1));
            color.push_back(image.atXY(j, i, 0, 2));
            row.push_back(color);
        }
        im_vec.push_back(row);
    }

    int numseam = 0;

    if (argc < 3) { // calculate max of max range of x on all y coordinates
        int maxseam = -1;
        for (int i = 0; i < energy_map.size(); i++) {
            int left = 0;
            int right = energy_map[i].size() - 1;
            while (right > 0 && left < energy_map[i].size() && (energy_map[i][left] != -1 || energy_map[i][right] != -1)) {
                if (energy_map[i][left] != -1) left++;
                if (energy_map[i][right] != -1) right--;
            }
            int diff = right - left + 1;
            if (maxseam < diff) {
                maxseam = diff;
            }
        }
        numseam = maxseam;
    } else {
        numseam = atoi(argv[2]);
    }

    for (int master = 0; master < numseam; master++) {
        std::cout << "Computing and removing seam #" << master + 1 << "\r" << std::flush;

        std::vector<std::vector<std::pair<double, double> > > gradient_map = calculate_gradient(luminosity_map);

        //set all energies specified in energy_map to negative/positive on the gradient map
        for (int i = 0; i < energy_map.size(); i++) {
            for (int j = 0; j < energy_map[0].size(); j++) {
                if (energy_map[i][j] != 0) {
                    gradient_map[i][j].second = energy_map[i][j] * 1000;
                }
            }
        }

        double min_seam = DBL_MAX;
        int loc = -1;
        for (int i = 0; i < gradient_map.back().size(); i++) {
            calculate_seam(gradient_map, gradient_map.size() - 1, i);
            if (gradient_map.back()[i].first < min_seam) {
                min_seam = gradient_map.back()[i].first;
                loc = i;
            }
        }

        //remove seams and the object manipulation map coordinates
        std::vector<std::pair<int, int> > toremove = trace_seam(gradient_map, loc);
        for (int i = 0; i < toremove.size(); i++) {
            int row = toremove[i].first;
            int col = toremove[i].second;
            im_vec[row].erase(im_vec[row].begin() + col);
            luminosity_map[row].erase(luminosity_map[row].begin() + col);
            energy_map[row].erase(energy_map[row].begin() + col);
        }
    }

    cimg_library::CImg<unsigned char> newimage(im_vec[0].size(), im_vec.size(), 1, 3);
    for (int i = 0; i < im_vec.size(); i++) {
        for (int j = 0; j < im_vec[i].size(); j++) {
            char color[3] = { im_vec[i][j][0], im_vec[i][j][1], im_vec[i][j][2] };
            newimage.draw_point(j, i, color);
        }
    }

    std::cout << "\n" << "Computation finished, displaying image" << "\n"; 

    cimg_library::CImgDisplay display(newimage, "Seam Carved Image");

    while (!display.is_closed()) {
        display.wait();
        
        newimage.display(display);
    }
}