Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

25
LINES

< > BotCompany Repo | #1006076 // Find Chess Board [v1, just show the test case]

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (5650L/39K/138K).

!752

static RGBImage board;
static int boardW, boardH;

p {
  BufferedImage screen = loadBufferedImage("#1006074");
  Rect boardRect = pointRect(194, 179, 501, 485);
  board = new RGBImage(screen).clip(boardRect);
  boardW = board.w();
  boardH = board.h();
  //showImage(board);
  //showImage(square(0, 0));
  //showImage(square(7, 7));
  new L<Rect> l;
  for x to 8: l.add(square(x, 0));
  for x to 8: l.add(square(x, 7));
  showImage(mergeImagePartsHorizontally(board, l));
}

static Rect square(int x, int y) {
  ret pointsRect(
    boardW*x/8, boardH*y/8,
    boardW*(x+1)/8, boardH*(y+1)/8);
}

download  show line numbers  debug dex  old transpilations   

Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, sawdedvomwva, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1006076
Snippet name: Find Chess Board [v1, just show the test case]
Eternal ID of this version: #1006076/1
Text MD5: 1231b93bbca6b9d7394489979e60438d
Transpilation MD5: f80e489eee2987dd383224f1f15380fe
Author: stefan
Category: javax / ocr
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-02-23 09:28:38
Source code size: 624 bytes / 25 lines
Pitched / IR pitched: No / No
Views / Downloads: 475 / 549
Referenced in: [show references]