Git Product home page Git Product logo

Comments (2)

WorldThirteen avatar WorldThirteen commented on May 25, 2024 2

@felschr, perspectiveProjection is a universal tool and can be used in simple crop cases too, but it might be overweight for a simple cropping use case.
GammaCV has no built-in crop operation, but it is possible to create your own. The implementation will depend on the details of your requirements, such like:

  • do you want to change the crop coordinates "on the fly";
  • does the size of the resulting image will always be the same as crop coordinates;
  • etc.

Here is a guide on how to create an operation: https://gammacv.com/docs/create_operation.

The sample crop operation for a simple case might look like:

kernel.glsl

vec4 operation(float y, float x) {
  return pickValue_tSrc(y + float(CY), x + float(CX));
}

crop.js

import * as gm from 'gammacv';
import kernel from './kernel.glsl';

export default (tSrc, x, y, w, h) => new gm.RegisterOperation('crop')
  .Input('tSrc', tSrc.dtype)
  .Output(tSrc.dtype)
  .Constant('CX', x)
  .Constant('CY', y)
  .LoadChunk('pickValue')
  .GLSLKernel(kernel)
  .SetShapeFn(() => [h, w, 4])
  .Compile({ tSrc });

This sample has kernel.glsl, as a separate file for syntax highlight, if you are not using a bundler that could load glsl as js strings, then you should put the content of kernel glsl as a string variable. This implementation is just a sample, wasn't debugged, and does not contain boundary state control.

Here is this sample on CodePen: https://codepen.io/WorldThirteen/pen/gOozMVo.

from gammacv.

WorldThirteen avatar WorldThirteen commented on May 25, 2024

Since we have no near-tearm plans to create a built-in crop operation, I am closing an issue.

from gammacv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.