當前位置: 首頁>>代碼示例>>Java>>正文


Java CommonUtils.getThreadsBeginN_2D方法代碼示例

本文整理匯總了Java中org.jtransforms.utils.CommonUtils.getThreadsBeginN_2D方法的典型用法代碼示例。如果您正苦於以下問題:Java CommonUtils.getThreadsBeginN_2D方法的具體用法?Java CommonUtils.getThreadsBeginN_2D怎麽用?Java CommonUtils.getThreadsBeginN_2D使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.jtransforms.utils.CommonUtils的用法示例。


在下文中一共展示了CommonUtils.getThreadsBeginN_2D方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: FloatFFT_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of FloatFFT_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public FloatFFT_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }

    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        this.useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(2 * rows * columns > LargeArray.getMaxSizeOf32bitArray());
    fftRows = new FloatFFT_1D(rows);
    if (rows == columns) {
        fftColumns = fftRows;
    } else {
        fftColumns = new FloatFFT_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:31,代碼來源:FloatFFT_2D.java

示例2: DoubleFFT_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of DoubleFFT_2D.
 *  
 * @param rows
 *                number of rows
 * @param columns
 *                number of columns
 */
public DoubleFFT_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }

    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        this.useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(2 * rows * columns > LargeArray.getMaxSizeOf32bitArray());
    fftRows = new DoubleFFT_1D(rows);
    if (rows == columns) {
        fftColumns = fftRows;
    } else {
        fftColumns = new DoubleFFT_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:33,代碼來源:DoubleFFT_2D.java

示例3: DoubleDST_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of DoubleDST_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public DoubleDST_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }
    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(rows * columns > LargeArray.getMaxSizeOf32bitArray());
    dstRows = new DoubleDST_1D(rows);
    if (rows == columns) {
        dstColumns = dstRows;
    } else {
        dstColumns = new DoubleDST_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:30,代碼來源:DoubleDST_2D.java

示例4: FloatDST_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of FloatDST_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public FloatDST_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }
    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(rows * columns > LargeArray.getMaxSizeOf32bitArray());
    dstRows = new FloatDST_1D(rows);
    if (rows == columns) {
        dstColumns = dstRows;
    } else {
        dstColumns = new FloatDST_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:30,代碼來源:FloatDST_2D.java

示例5: DoubleDCT_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of DoubleDCT_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public DoubleDCT_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }
    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        this.useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(rows * columns > LargeArray.getMaxSizeOf32bitArray());
    dctRows = new DoubleDCT_1D(rows);
    if (rows == columns) {
        dctColumns = dctRows;
    } else {
        dctColumns = new DoubleDCT_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:30,代碼來源:DoubleDCT_2D.java

示例6: FloatDCT_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of FloatDCT_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public FloatDCT_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }
    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        this.useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(rows * columns > LargeArray.getMaxSizeOf32bitArray());
    dctRows = new FloatDCT_1D(rows);
    if (rows == columns) {
        dctColumns = dctRows;
    } else {
        dctColumns = new FloatDCT_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:30,代碼來源:FloatDCT_2D.java

示例7: DoubleDHT_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of DoubleDHT_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public DoubleDHT_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }
    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        this.useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(rows * columns > LargeArray.getMaxSizeOf32bitArray());
    dhtRows = new DoubleDHT_1D(rows);
    if (rows == columns) {
        dhtColumns = dhtRows;
    } else {
        dhtColumns = new DoubleDHT_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:30,代碼來源:DoubleDHT_2D.java

示例8: FloatDHT_2D

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Creates new instance of FloatDHT_2D.
 *  
 * @param rows    number of rows
 * @param columns number of columns
 */
public FloatDHT_2D(long rows, long columns)
{
    if (rows <= 1 || columns <= 1) {
        throw new IllegalArgumentException("rows and columns must be greater than 1");
    }
    this.rows = (int) rows;
    this.columns = (int) columns;
    this.rowsl = rows;
    this.columnsl = columns;
    if (rows * columns >= CommonUtils.getThreadsBeginN_2D()) {
        this.useThreads = true;
    }
    if (CommonUtils.isPowerOf2(rows) && CommonUtils.isPowerOf2(columns)) {
        isPowerOfTwo = true;
    }
    CommonUtils.setUseLargeArrays(rows * columns > LargeArray.getMaxSizeOf32bitArray());
    dhtRows = new FloatDHT_1D(rows);
    if (rows == columns) {
        dhtColumns = dhtRows;
    } else {
        dhtColumns = new FloatDHT_1D(columns);
    }
}
 
開發者ID:wendykierp,項目名稱:JTransforms,代碼行數:30,代碼來源:FloatDHT_2D.java

示例9: initialiseKernel

import org.jtransforms.utils.CommonUtils; //導入方法依賴的package包/類
/**
 * Initialise the kernel FHT. It is recreated only if the target size has changed.
 *
 * @param maxx
 *            the width of the target image
 * @param maxy
 *            the height of the target image
 */
public void initialiseKernel(int maxx, int maxy)
{
	int maxN = Maths.nextPow2(Maths.max(maxx, maxy, kN));
	if (tmp == null || tmp.length != maxN * maxN)
		tmp = new float[maxN * maxN];
	if (kernelFht != null && maxN == kernelFht.getWidth())
		// Already initialised
		return;
	int size = maxN * maxN;
	// No window function for the kernel so just create a new FHT
	float[] data;
	if (kw < maxN || kh < maxN)
	{
		// Too small so insert in the middle
		data = new float[size];
		int x = getInsert(maxN, kw);
		int y = getInsert(maxN, kh);
		insert(kernel, kw, data, maxN, x, y);
	}
	else
	{
		// Clone to avoid destroying data
		data = kernel.clone();
	}

	// Do the transform using JTransforms as it is faster. Do not allow multi-threading.
	long begin = CommonUtils.getThreadsBeginN_2D();
	CommonUtils.setThreadsBeginN_2D(Long.MAX_VALUE);
	dht = new FloatDHT_2D(maxN, maxN);
	CommonUtils.setThreadsBeginN_2D(begin);
	dht.forward(data);
	kernelFht = new FHT2(data, maxN, true);

	//kernelFht = new FHT2(data, maxN, false);
	//kernelFht.transform();		

	if (operation == Operation.DECONVOLUTION)
		kernelFht.initialiseFastOperations();
	else
		kernelFht.initialiseFastMultiply();

	// This is used for the output complex multiple of the two FHTs
	tmp = new float[size];
}
 
開發者ID:aherbert,項目名稱:GDSC-SMLM,代碼行數:53,代碼來源:FHTFilter.java


注:本文中的org.jtransforms.utils.CommonUtils.getThreadsBeginN_2D方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。