Examples of process()


Examples of kdu_jni.Kdu_region_decompressor.Process()

            Kdu_coords viewSize = view_dims.Access_size();
            incomplete_region.Assign(image_dims);

            int[] imgBuffer = new int[viewSize.Get_x() * viewSize.Get_y()];
            int[] kduBuffer = null;
            while (decompressor.Process(region_buf, image_dims.Access_pos(), 0, 0, region_buf_size, incomplete_region, new_region)) {
                Kdu_coords newOffset = new_region.Access_pos();
                Kdu_coords newSize = new_region.Access_size();
                newOffset.Subtract(view_dims.Access_pos());

                kduBuffer = region_buf;
View Full Code Here

Examples of lupos.engine.operators.multiinput.join.parallel.ResultCollector.process()

        for(int i=0; i<keys.length; i++) {
          final K key = keys[i];
          threads[i] = new Thread() {
            @Override
            public void run() {
              resultCollector.process(BlockUpdatesStorageWithDistributionStrategy.this.evaluateTriplePatternAfterAdding(key, triplePattern), 0);
              resultCollector.incNumberOfThreads();
            }
          };
          threads[i].start();
        }
View Full Code Here

Examples of marvin.plugin.MarvinImagePlugin.process()

 
  private void singleThread()
  {
    processStarTime = System.currentTimeMillis();
    MarvinImagePlugin plgImage = MarvinPluginLoader.loadImagePlugin("org.marvinproject.image.statistical.Maximum.jar");
    plgImage.process(imageIn, imageOut);
    imageOut.update();
    imagePanel.setImage(imageOut);
    labelPerformance.setText("Performance: " + (System.currentTimeMillis() - processStarTime)+ " milliseconds (single Thread)");
    mainFrame.repaint();
  }
View Full Code Here

Examples of net.algart.matrices.StreamingApertureProcessor.process()

    @Override
    public void percentile(Matrix<? extends UpdatablePArray> dest, Matrix<? extends PArray> src,
        Matrix<? extends PArray> percentileIndexes, Pattern pattern)
    {
        StreamingApertureProcessor percentiler = RankProcessors.getPercentiler(context(), interpolated, bitLevels);
        percentiler.process(dest, src, percentileIndexes, pattern);
    }

    @Override
    public <T extends PArray> Matrix<T> asRank(Class<? extends T> requiredType,
        Matrix<? extends PArray> baseMatrix, Matrix<? extends PArray> rankedMatrix, Pattern pattern)
View Full Code Here

Examples of net.azib.ipscan.exporters.ExportProcessor.process()

            return resultTable.isSelected(index);
          }
        };
      }

      exportProcessor.process(resultTable.getScanningResults(), filter);
      statusBar.setStatusText(null);
    }

    private void addFileExtensions(List<String> extensions, List<String> descriptions, StringBuffer sb) {
      sb.append(" (");
View Full Code Here

Examples of net.bpiwowar.mg4j.extensions.adhoc.RetrievalModel.process()

      }

      // Ask for results (add some documents in case we discard some
      // after)
      model.process(topic, results,
          capacity
              + (discardedDocuments == null ? 0
                  : discardedDocuments.size()), timer);

      final int retrieved = results.size();
View Full Code Here

Examples of net.citizensnpcs.utils.PageUtils.PageInstance.process()

        if (page > instance.maxPages()) {
            player.sendMessage(ChatColor.GRAY + "Invalid page entered. There are only " + instance.maxPages()
                    + " pages.");
            return;
        }
        instance.process(page);
    }

    @CommandRequirements()
    @Command(
            aliases = "quest",
View Full Code Here

Examples of net.java.textilej.parser.tag.BlockTagProcessor.process()

               
                int lineOffset = blockProcessor.getLineOffset();
                if (lineOffset < textileLine.length()) {
                  String textileLineEnd = textileLine.substring(lineOffset);
                  if (textileLineEnd.trim().length() > 0) {
                    blockProcessor.process(textileLine,lineOffset);
                  }
                }
                while (!blockProcessor.isBlockClosed()) {
                  if ((textileLine = reader.readLine()) != null) {
                    ++lineNumber;
View Full Code Here

Examples of net.riccardocossu.autodoc.base.OutputPlugin.process()

        String identifier = splittedPackage[0];
        String configResource = splittedPackage.length > 1 ? splittedPackage[1]
            : null;
        OutputPlugin pl = factory.initOutputPlugin(identifier,
            configResource);
        pl.process(parsedPackages, baseOutputDirectory);
      } catch (Exception e) {
        log.error("Error including or executing output plugin " + p, e);
      }
    }
    return parsedPackages;
View Full Code Here

Examples of net.rim.device.api.io.parser.json.JSONMessageProcessor.process()

    private boolean process(final Message message) {
        final JSONMessageProcessor jsonMP = new JSONMessageProcessor();

        try {
            if (message != null) {
                jsonMP.process(message);
            }
        } catch (final MessageProcessorException mpe) {
            Dialog.alert(mpe.toString());
            return false;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.