mosaic of white image: ORA-06531 problem

Hi all!
I have a problem :( Cannot create two blank images mosaicked image. Can someone help me?
Oracle 11.2.0.2. Windows.

Script:
------------------------------------
declare
GR sdo_georaster;
GR1 sdo_georaster;
Sdo_georaster GR2;
Start

removal of the test;
commit;

GR1: = sdo_geor.createBlank (21001, sdo_number_array (0, 0, 0) sdo_number_array (350, 350, 3), 255, "TEST_RDT");
GR2: = sdo_geor.createBlank (21001, sdo_number_array (0, 0, 0) sdo_number_array (350, 350, 3), 255, "TEST_RDT");

GR1.spatialExtent: = null;
GR2.spatialExtent: = null;

sdo_geor. Georeferenced (gr1, 262148, 1,
sdo_number_array (0.419, 0, 1321160.5575),
sdo_number_array (0,-0.419, 467357.1645));
sdo_geor. Georeferenced (gr2, 262148, 1,
sdo_number_array (0.419, 0, 1321244.3575),
sdo_number_array (0,-0.419, 467273.3645));

GR1.spatialExtent: = sdo_geor.generateSpatialExtent (gr1);
GR2.spatialExtent: = sdo_geor.generateSpatialExtent (gr2).

insert into test (id, image) values (1, gr1);
insert into test (id, image) values (2, gr2);

commit;

Remove mosaic;
commit;

insert into mosaic (id, image) values (1, sdo_geor.init ('MOSAIC_RDT')) VOTING image INTO gr.
sdo_geor. Mosaic ('TEST', 'IMAGE', gr, NULL);
image fixed mosaic update gr = where id = 1;

commit;

end;
------------------------------------
Error:

ORA-06531: Reference to an uninitialized collection
ORA-06512: at the 'MDSYS. SDO_GEOR_INT', line 674
ORA-06512: at the 'MDSYS. SDO_GEOR_INT', line 924
ORA-06512: at the 'MDSYS. SDO_GEOR_INT', line 1268
ORA-06512: at the 'MDSYS. SDO_GEOR_INT', line 1539
ORA-06512: at the 'MDSYS. SDO_GEOR', line 1401...
------------------------------------

In fact, this problem is caused by images real mosaicing. But I can't do it even with the virgins.
Please, help me!

Edited by: 869446 the 30.06.2011 06:38

If you got the same error when you mosaic on the actual image, maybe not problem of mosaic. Please try the following on your development database and let us know if it solves the problem:

sqlplus sys as sysdba
SQL > alter session set current_schema = mdsys.
SQL > @${ORACLE_HOME}/md/admin/prvtgr.plb

-Fengting

Published by: fechen on June 30, 2011 07:19

Tags: Database

Similar Questions

  • ORA-06531 refers to a collection not initialized under oracle 6i

    Hello

    I am importing data from excel to the table of data base with column mapping (oracle 6i forms) using the ole2 package and then call the package

    which is to have a procedure. during execution of the package procedure,

    I am getting error "ora-06531 reference to an uninitialized collection" that is before me in 1.in_lData.count

    I'm working on it, but still not getting any solution. There is no problem in my coding form gets compiled, but at runtime, I get this error.

    And when debugging, data read from ole2 package is not passed to loop the procedure.
    (first of all, I'm calling package ole 2, then the ole2 package I call my package procedure.)

    Please help me. My code is as follows

    ------------------------------------------------------Ole 2 Package begins-----------------------------------------------------------------
    PROCEDURE get_excel IS

    REQUEST OLE2. OBJ_TYPE;

    WORKBOOKS OLE2. OBJ_TYPE;

    WORKBOOK OLE2. OBJ_TYPE;

    SPREADSHEETS OLE2. OBJ_TYPE;

    WORKSHEET OLE2. OBJ_TYPE;

    CELL OLE2. OBJ_TYPE;

    CTR NUMBER (12);

    PASSES NUMBER (2);

    CELLVALUE VARCHAR2 (89);

    C_ROUTE VARCHAR2 (255);

    V_ROUTE VARCHAR2 (1000);

    C_TRNDATE VARCHAR2 (255);

    V_TRNDATE VARCHAR2 (1000);

    C_TTIME VARCHAR2 (255);

    V_TTIME VARCHAR2 (1000);

    C_TID VARCHAR2 (255);

    V_TID VARCHAR2 (1000);

    FILENAME VARCHAR2 (500);

    v_path varchar2 (1000): =: path;

    ARGS OLE2. OBJ_TYPE;

    tDataList PK_EXCEL_TO_DB.tDataList;

    BEGIN

    : progress: = "Please wait...". » ;



    SYNCHRONIZE;

    -LAUNCH EXCEL APPLICATION-

    filename: = V_PATH; - GET_FILE_NAME ('c:------', File_Filter = > ' files Excel (*.xls) | * .xls |'); -Choose the file

    APPLICATION: = OLE2. CREATE_OBJ('EXCEL.) APPLICATION ");"

    OLE2. SET_PROPERTY (APPLICATION, 'VISIBLE', 'FALSE');



    -REMOVE EXCEL APPLICATION - FILING CABINETS



    WORKBOOKS: = OLE2. GET_OBJ_PROPERTY (APPLICATION, 'NOTEBOOKS');



    -OPENING REQUIRED WORKBOOK-

    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, FILENAME);

    WORKBOOK: = OLE2. GET_OBJ_PROPERTY (WORKBOOKS, 'OPEN', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);



    -OPEN REQUIRED WORKSHEET-

    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (args, "Sheet1");

    WORKSHEET: = OLE2. GET_OBJ_PROPERTY (WORKBOOK 'SHEETS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);



    ----------------GET CELL VALUE-------------------------------------

    CTR: = 2; -Line number

    cols: = 1; -Number of column

    PREMIER_ENREGISTREMENT;

    LOOP

    -----------------------COLUMN1-------------------------------------

    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, COLS); -COLLARS

    OLE2. ADD_ARG(ARGS,1);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    C_ROUTE: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');



    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, CTR);

    OLE2. ADD_ARG(ARGS,1);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    V_ROUTE: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');

    -----------------------COLUMN2-------------------------------------

    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, COLS);

    OLE2. ADD_ARG(ARGS,2);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    C_TRNDATE: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');



    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, CTR);

    OLE2. ADD_ARG(ARGS,2);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    V_TRNDATE: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');

    -----------------------COLUMN3-------------------------------------

    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, COLS);

    OLE2. ADD_ARG(ARGS,3);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    C_TTIME: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');



    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, CTR);

    OLE2. ADD_ARG(ARGS,3);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    V_TTIME: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');

    -----------------------COLUMN4-------------------------------------

    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, COLS);

    OLE2. ADD_ARG(ARGS,4);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    C_TID: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');



    ARGS: = OLE2. CREATE_ARGLIST;

    OLE2. ADD_ARG (ARGS, CTR);

    OLE2. ADD_ARG(ARGS,4);

    CELL: = OLE2. GET_OBJ_PROPERTY (WORKSHEET, 'CELLS', ARGS);

    OLE2. DESTROY_ARGLIST (ARGS);

    ARGS: = OLE2. CREATE_ARGLIST;

    V_TID: = OLE2. GET_CHAR_PROPERTY (CELL, 'TEXT');



    PK_EXCEL_TO_DB. PR_DO_INSERT (tDataList);

    WHEN length of OUTPUT (V_Route) = 0 or length (V_Route) is null.

    CTR: = ctr + 1;

    cols: = 1;

    i_ldata: = PK_EXCEL_TO_DB.tDatalist (); -already set

    PK_EXCEL_TO_DB. PR_DO_INSERT (tDataList);

    END LOOP;



    : progress: = 'EXCEL READING IS MADE.... » ;

    -CLOSE THE AFTER READING EXCEL SHEET-

    OLE2. INVOKE (APPLICATION, 'QUIT');



    -RELEASE ALL OBJECTS

    OLE2. RELEASE_OBJ (CELL);

    OLE2. RELEASE_OBJ (WORKSHEET);

    OLE2. RELEASE_OBJ (WORKBOOK);

    OLE2. RELEASE_OBJ (WORKBOOKS);

    OLE2. RELEASE_OBJ (APPLICATION);

    : PROGRESS: = "DATA INSERTED IN THE TABLE." SYNCHRONIZE;

    SYNCHRONIZE;

    exception

    WHILE OTHERS THEN

    MESSAGE (SQLERRM);

    END;

    ----------------------------------------------------------------------------------------OLE2 PACKAGE ENDS-------------------------------------------------



    -SPECIFICATION OF PACKAGE PK_EXCEL_TO_DB-

    PACKAGE PK_EXCEL_TO_DB IS

    TYPE tKeyValue () IS RENDERING

    CRUST VARCHAR2 (255),

    VROUTE VARCHAR2 (1000).

    CTRNDATE VARCHAR2 (255),

    VTRNDATE VARCHAR2 (1000).

    CTTIME VARCHAR2 (255),

    VTTIME VARCHAR2 (1000).

    CTID VARCHAR2 (255),

    VTID VARCHAR2 (1000));

    TYPE tDataList IS the TABLE OF THE tKeyValue;

    PROCEDURE PR_DO_INSERT (i_lData IN tDataList);

    END;
    -----------------------------------------------------------------PK_EXCEL_TO_DB PACKAGE BODY-----------------------------------------------------
    PK_EXCEL_TO_DB PACKAGE BODY IS

    PROCEDURE PR_DO_INSERT (i_lData IN tDataList) IS

    CC_ROUTE VARCHAR2 (255);

    VV_ROUTE VARCHAR2 (1000);

    CC_TRNDATE VARCHAR2 (255);

    VV_TRNDATE VARCHAR2 (1000);

    CC_TTIME VARCHAR2 (255);

    VV_TTIME VARCHAR2 (1000);

    CC_TID VARCHAR2 (255);

    VV_TID VARCHAR2 (1000);

    BEGIN

    BECAUSE me IN 1.i_lData.count

    LOOP

    CC_ROUTE: = CC_ROUTE | ',' || i_ldata (i). CRUST;

    VV_ROUTE: = VV_ROUTE | ',''' || i_ldata (i). VROUTE | '''';



    CC_TRNDATE: = CC_TRNDATE | ',' || i_ldata (i). CTRNDATE;

    VV_TRNDATE: = VV_TRNDATE | ',''' || i_ldata (i). VTRNDATE | '''';



    CC_TTIME: = CC_TTIME | ',' || i_ldata (i). CTTIME;

    VV_TTIME: = VV_TTIME | ',''' || i_ldata (i). VTTIME | '''';



    CC_TID: = CC_TID | ',' || i_ldata (i). CTID;

    VV_TID: = VV_TID | ',''' || i_ldata (i). VTID | '''';

    END LOOP;

    -IMMEDIATE EXECUTION

    FORMS_DDL ("INSERT INTO TEMP2 (' |)") SUBSTR (CC_ROUTE, 2). ' ' ||

    SUBSTR (CC_TRNDATE, 2). ' ' ||

    SUBSTR (CC_TTIME, 2). '' ||

    SUBSTR (CC_TID, 2). ')

    VALUES (' |) SUBSTR(VV_ROUTE,2) | ' ' ||

    SUBSTR(VV_TRNDATE,2) | '' ||

    SUBSTR(VV_TTIME,2) | ' ' ||

    SUBSTR(VV_TID,2) | ')');

    commit;

    END;

    END;

    ------------------------------------------------------------------------PK_EXCEL_TO_DB PACKAGE BODY ENDS--------------------------------------

    Thank you
    Sameer.

    tDataList is a collection, so you must initialize:

    tDataList:=PK_EXCEL_TO_DB.tDataList();
    
  • ORA-06531 refers to an uninitialized collection

    Hello
    I get this "ora-06531 reference to an uninitialized collection" during execution of the procedure below.
    =======================

    PROCEDURE iud_account_col
    (pv_account_version IN account_version_t
    )
    AS


    LC_USR_ID CONSTANT VARCHAR2 (30): = pkg_util.get_usr_id;
    LC_TMSTMP CONSTANT TIMESTAMP / * WITH ZONE SCHEDULE * /: = pkg_util.get_tmstmp;
    lv_level VARCHAR2 (100);
    number of lv_am_key_id;
    lv_acct_cusip VARCHAR2 (12);
    Number LC_AM_KEY_ID;
    Number LC_AM_VER_NUM;




    BEGIN
    DECLARE
    lv_am account_version_t;
    lv_amv account_maint_t;
    lv_amvv account_maint_version_t;

    cursor c_acct_cusip (cv_am_key_id varchar2) is
    Select acct_cusip
    of account_maintenance
    where am_key_id = lv_amv.am_key_id;


    BEGIN
    lv_am: = pv_account_version;
    lv_level: = 'ACCOUNT_MAINT ';
    lv_amv: = pv_account_version.account_maint;
    LC_AM_KEY_ID: = lv_amv.am_key_id;


    FOR acct_cusip_info in c_acct_cusip (lv_am_key_id)
    LOOP
    lv_acct_cusip: = acct_cusip_info.acct_cusip;


    END LOOP;

    IF lv_amv.action = 'I '.
    THEN
    INSERT
    IN
    account_maintenance
    (am_key_id
    acct_cusip
    am_orig_cre_tmstp
    am_orig_usr_id
    delete_ind
    add_usr_id
    add_tmstmp
    lock_level_num
    )
    VALUES
    (lv_amv.am_key_id
    lv_amv.acct_cusip
    LC_TMSTMP
    LC_USR_ID
    lv_amv.delete_ind
    LC_USR_ID
    LC_TMSTMP
    lv_amv.lock_level_num
    ) ;


    END IF;


    lv_amvv: = pv_account_version.account_maint.account_maint_version;
    lv_level: = 'ACCOUNT_MAINT_VERSION ';
    LC_AM_VER_NUM: = lv_amvv.am_ver_num;


    IF lv_amvv.action = 'I '.
    THEN
    -Insert number maint version
    INSERT
    IN
    ACCOUNT_MAINTENANCE_VERSION
    (AM_KEY_ID
    AM_VER_NUM
    ACCT_CUSIP
    LEGAL_ENTITY
    APPR_STATUS_REF_ID
    INACTIVE_IND
    ADD_USR_ID
    ADD_TMSTMP
    UPD_USR_ID
    UPD_TMSTMP
    LOCK_LEVEL_NUM
    )
    VALUES
    (lv_amv.am_key_id
    lv_amvv.am_ver_num
    lv_acct_cusip
    lv_amvv.legal_entity
    lv_amvv.appr_status_ref_id
    , 'N'
    LC_USR_ID
    LC_TMSTMP
    LC_USR_ID
    LC_TMSTMP
    lv_amvv.lock_level_num
    );


    END IF; -end for the version of maint.



    FOR j IN lv_amv.account_maint_comment_col. FIRST
    .. lv_amv.account_maint_comment_col. LAST
    LOOP
    DECLARE
    lv_amvc account_maint_comment_t;

    BEGIN
    lv_amvc: = lv_amv.account_maint_comment_col (j);
    lv_level: = 'ACCOUNT_MAINT_COMMENT ';

    IF lv_amvc.action = 'I '.
    THEN
    -Insert in the table maintenance comment account
    INSERT
    IN
    ACCOUNT_MAINTENANCE_COMMENT
    (AM_KEY_ID
    AM_VER_NUM
    COMMENT_NUM
    COMMENT_TMSTP
    COMMENT_TXT
    INACTIVE_IND
    ADD_USR_ID
    ADD_TMSTMP
    LOCK_LEVEL_NUM
    )
    VALUES
    (LC_AM_KEY_ID
    LC_AM_VER_NUM
    lv_amvc.comment_num
    LC_TMSTMP
    lv_amvc.comment_txt
    , 'N'
    LC_USR_ID
    LC_TMSTMP
    lv_amvc.lock_level_num
    );
    END IF;
    END;
    END LOOP; -end of loop on behalf of observations maint
    END;



    COMMIT WORK;
    RETURN;
    EXCEPTION
    WHILE OTHERS THEN
    ROLLBACK WORK;
    LIFT;
    END iud_account_col;

    ====================

    The UDT is below:

    CREATE OR REPLACE TYPE ACCOUNT_VERSION_T
    AS AN OBJECT
    (
    PORTFOLIO PORTFOLIO_T
    ACCOUNT_MAINT ACCOUNT_MAINT_T


    )
    /



    CREATE OR REPLACE TYPE ACCOUNT_MAINT_T
    AS AN OBJECT
    (Number of AM_KEY_ID
    , ACCT_CUSIP varchar2 (12)
    , DELETE_IND varchar2 (1)
    , ADD_USR_ID varchar2 (20)
    ADD_TMSTMP timestamp
    , UPD_USR_ID varchar2 (20)
    UPD_TMSTMP timestamp
    Number LOCK_LEVEL_NUM
    , ACTION VARCHAR2 (1)
    ACCOUNT_MAINT_VERSION ACCOUNT_MAINT_VERSION_T
    ACCOUNT_MAINT_COMMENT_COL ACCOUNT_MAINT_COMMENT_COL_T
    );
    /


    CREATE OR REPLACE TYPE ACCOUNT_MAINT_VERSION_T
    AS AN OBJECT
    (Number of AM_KEY_ID
    Number AM_VER_NUM
    , ACCT_CUSIP varchar2 (12)
    , LEGAL_ENTITY varchar2 (100)
    Number APPR_STATUS_REF_ID
    FUND_INACTIVE_TMSTMP timestamp
    , ADD_USR_ID varchar2 (20)
    ADD_TMSTMP timestamp
    , UPD_USR_ID varchar2 (20)
    UPD_TMSTMP timestamp
    Number LOCK_LEVEL_NUM
    , ACTION VARCHAR2 (1)
    );
    /

    CREATE OR REPLACE TYPE ACCOUNT_MAINT_COMMENT_T
    AS AN OBJECT
    (Number of AM_KEY_ID
    Number AM_VER_NUM
    Number COMMENT_NUM
    , COMMENT_TXT varchar2 (400)
    , ADD_USR_ID varchar2 (20)
    ADD_TMSTMP timestamp
    , UPD_USR_ID varchar2 (20)
    UPD_TMSTMP timestamp
    Number LOCK_LEVEL_NUM
    , ACTION VARCHAR2 (1)
    );
    /

    CREATE OR REPLACE TYPE ACCOUNT_MAINT_COMMENT_COL_T AS TABLE ACCOUNT_MAINT_COMMENT_T;
    /

    =====================================================

    That's how I'm trying to run:


    Declare
    pv_account_version account_version_t: = account_version_t (null
    , account_maint_t (10041
    '11111111',
    , 'N'
    , 'abc '.
    NULL
    NULL
    NULL
    1
    , NULL-'I '.
    , ACCOUNT_MAINT_VERSION_T (10031
    10001
    NULL
    , "Legal entity".
    22
    NULL
    , 'abc '.
    NULL
    NULL
    NULL
    1
    , NULL-'I '.
    )
    ACCOUNT_MAINT_COMMENT_COL_T)
    10031
    10001
    1001
    , "My first comment.
    , 'abc '.
    NULL
    NULL
    NULL
    1
    , 'I')
    ));
    Begin
    pkg_cdm_process_v2.iud_account (pv_account_version);
    END;
    /

    SQL > /.
    Declare
    *
    ERROR on line 1:
    ORA-06531: Reference to an uninitialized collection
    ORA-06512: at "ACEENG. PKG_CDM_PROCESS_V2', line 799
    ORA-06512: at line 27


    What I'm doing wrong here...
    Help, please.

    Your problem is, when you try to loop through the collection comment that fact - as you pass NULL as the collention - there isn't. So change your code like this:

    IF lv_amv.account_maint_comment_col IS NOT NULL AND lv_amv.account_maint_comment_col IS NOT EMPTY
    THEN
    
    FOR j IN lv_amv.account_maint_comment_col.FIRST
    .. lv_amv.account_maint_comment_col.LAST
    LOOP
    DECLARE
    lv_amvc account_maint_comment_t;
    
    BEGIN
    lv_amvc := lv_amv.account_maint_comment_col(j);
    lv_level := 'ACCOUNT_MAINT_COMMENT';
    
    IF lv_amvc.action = 'I'
    THEN
    --- Insert into account maintenance comment table
    INSERT
    INTO
    ACCOUNT_MAINTENANCE_COMMENT
    ( AM_KEY_ID
    , AM_VER_NUM
    , COMMENT_NUM
    , COMMENT_TMSTP
    , COMMENT_TXT
    , INACTIVE_IND
    , ADD_USR_ID
    , ADD_TMSTMP
    , LOCK_LEVEL_NUM
    )
    VALUES
    ( LC_AM_KEY_ID
    , LC_AM_VER_NUM
    , lv_amvc.comment_num
    , LC_TMSTMP
    , lv_amvc.comment_txt
    , 'N'
    , LC_USR_ID
    , LC_TMSTMP
    , lv_amvc.lock_level_num
    );
    END IF;
    END;
    END LOOP; --- end loop for account maint comments
    
    END IF;
    

    HTH

  • Mosaicing frame low images

    I'm trying to find a simple way to subjects of mosaic in AE.

    The film is slow and the mosaic has need to frequently change the size and position. This departure followed also auto, so manual hold keyframing is.

    Option 1 - I tried to apply a mask into a layer duplicate, mosaicked, but when you move the mask he moves the entire layer. It's also very awkward to change the size, shape and position of the mask (i.e. not easy to use handle bars on the).

    Option 2: I can create a shape layer and the follow-up of the size and the position is great, but I don't see a simple way to change the shape of a mosaic.

    Movement I could just create a mask shape and move and size (via the handle bars) as needed, really annoyed with myself that I can't work this simple task in AE.

    I'm looking for the easiest most elegant method because this task is something I have to do a lot.

    See you soon

    If I understand what you try to do this correctly, there are two options. The first would be to set up the model with two copies of your film and a mask or follow mast to the top of the page copy of the images. Mosaic apply to copying albums hidden from your footage.

    The second option would be to use a copy of your images and an adjustment layer with the mosaic effect applied to an adjustment layer masks. You can also use a matte on the adjustment layer.

    If you follow the faces, there is a third option. You can use AE face tracker to create a mask that follows the face. This mask can limit the effect of mosaic applied to images. If you follow the faces that could be done with a single layer. Even if you animated the mask by hand (rotoscoped) you could do this with a single layer.

    Something like a face can give you all the tracking data, you need to move a mask or a shape layer and follow the movement of the object on the screen. If you are tracking something like a sign or a license plate, you can use track corners or Mocha to generate a form, corners or mask layer that will follow the action easily. If you want to track something like a person walking across the stage, then you can use RotoBrush or rotoscoped images by hand. It is the slowest method.

    Once you have the mask or the form created and following the action, you must use then this mask or shape as a track matte for the adjustment layer or a copy of your images, and then apply the mosaic effect. All that remains is to adjust the edges of the mask, so get the exact look you want for the edges.

    I hope this helps. Looks like you're new to AE and compositing. Let us know if you don't know what I'm talking about and if possible to give us an example of the sequence.

    To learn more about Rotobrush, hidden by approach, using masks to the effects of the limit, or anything else you don't understand type some keywords in the search help field at the top right of EI and in most cases, you will find excellent resources and training.

    A last suggestion. Editing and animation of the masks are quite simple in AE if you select the pencil tool and use the Alt/Option key and the Ctrl/Cmnd key modify the tool. Maybe this little tutorial that I threw together will help you a bit:

  • Beginner help.  Changing an image of the stock in a pure black and white image without grayscale.

    I'm taking a black and white (gray scale) tigerpaw and convert it to a totally black and white image without grey scale.  I imported the image (free, unprotected) and size it.  I used the magic wand to select all areas not black and I want to just convert to white, but I can't seem to understand this.  I'm sure this is a stupid question, but the solution is to escape despite the search. Thanks for any help.

    Now that you have selected all of the areas you want to edit white > fill and, in the field of use, choose white. The mixture of Normal mode.

    If you wish, you can select > Inverse the selection and edition > fill with black

    Then select > deselect

  • Mosaic with image after Yosemite problem

    I use CS6 (13.0.6) on my iMac and recently updated in Yosemite.  I now get a problem where images will suddenly go black or get type mosaic/puzzle look weird.  In the example below, the 'source' images in the mosaic were files that I had recently closed - it is therefore a version coded for the correct image (if necessary).

    Therefore, the only solution is to close Photoshop and start over.  Does anyone else have this problem?  All the patches?

    Thanks for any help or suggestion!

    Screen Shot 2014-12-01 at 1.17.53 PM.png

    Not turning off"use graphics processor" in the Performance preference and restarting Photoshop have a bearing on the issue.

  • White images/photos on my screensaver

    I use the "Vintage Prints" option for my screensaver.  It is configured to use a photo event called "screen saver".

    As the photos appear that I get a lot of white people.  A picture will pop up, but next to him will be a black box surrounded by a white border.  Sometimes there will be more of them and the na few photos.

    I made a new event of Photos to use, but I get the same results.  I have rebooted, tried other options like "Floating" or "Moving Wall," all with the same result.

    topcop1 - it was me killing too using classic and ken burns and to get the "random" blank screens just enough to shake the enjoyment of the show... I have reproduce your problem with 'vintage prints' after I found your post earlier that day while trying to solve the problems. I ended up suspicion of incompatible image formats and it turns out that I had a lot of .cr2 (canon raw) as well as the films .mov and .mts files buried in some subfolders. I used the spot to bring them up to no nested directories and so far no longer virgins pics. don't know who was the culprit but seems right ".jpg" work very well. thought that might help you.

  • Emulator CVS displays bitmap color black and white images

    I use a VBAI2009 inspection on 1454 CVS which uses a camera firewire AVT Guppy F - 036C. This system is on a production machine inspect the product we make. VBAI uses the legacy IMAQ for IEEE 1394 on a CVS not the driver IMAQ-dx cameras. The VBAI script contains several steps function color inspection. To get the AVT camera to display the color, I had to install the files of MAX camera using the Bayer color tab because Bayer settings are not accessible from the driver on the CVS IMAQ. I'm no adjustment of the camera of the VBAI. This configuration works well and has worked for 6 months on the machine of production without any problem.

    Now, I need to edit the VBAI script but can't stop the machine to make the changes and test the program. I captured images bitmap using MAX during the inspection was installed 6 months ago and they stored on my host for just such an occasion. I am using these captured images and the CVS emulator in VBAI to make the changes to the program offline. I performed the inspection under the CVS emulator and the acquisition stage is configured to point to the captured bitmap images using the button Configure Simulation settings. The problem I have is that bitmaps are displayed as black & white in the emulator, even if these are images of color seen with paint. I can't find a way to fix this. Is - this problem as a result of using the parameters of Bayer to create the image color or something else in the emulator? The emulator, no installation of color image treats?

    Any help would be appreciated,

    Mark

    The stages of acquisition camera record video mode information used to acquire images. If you use these steps in emulation mode, it converts the type size and the image to match what has been gained for calibration and processing step use the same type of image. Looks like than the stage thought that the image was mono, even if you got it to be color. I will consider how it could have be saved incorrectly when you use the settings of Bayer. In the short term, you can disable the acquisition stage (don't delete so you do not lose the camera settings saved in step) and use a stage of acquisition of simulation or a new phase in the acquisition of 1394 and won't force the image size/type.

    Hope this helps,

    Brad

  • InDesign is no longer we'll me colorize black in grayscale or black and white images related after update.

    I first noticed this problem when I open an old file that I knew that I had previously color and black and white logo with a shade. When I open the file after update, the logo positioned (this is a tiff file, the color space is black and white) was black instead of orange. I know I used to be able to place an image in black and white, double click it and change the shade black to a color, but now after update I can't do. I tried to uninstall and reinstall the program, but I had no chance. Any ideas?

    Known issue. Use overprint preview to see the appropriate color.

  • Image lightbox container problem

    For all Adobuddies.

    I recently added the lightbox widget to my website in Dreamweaver.   I found this is extremely useful, since I'm more of a Visual Designer and less than a expert when it comes to the aspect web code/css.   Displaying my actual website, transferred on Firefox and Safari on my computer, the big picture content appears exactly as it should.   However, when you check its appearance on two different computers IE, the bottom of the image, which includes the close button and the text of the "Image X of Y" appears to a width to the the rest of the box.   You can check the site in question here: http://www.mstefani.com/misc (click on an image to see the problem).   It is an eye sore for me (and potential employers), and it is probably the result of my lack of language html/css.   Any help to fix this would be greatly appreciated.


    A smaller of my concerns are the text of "Image X of Y" itself.   The numbering of the images does not match their order in the visual layout.   For example the image completely left isn't really frame 1 of 9.   I suppose that this is due to the fact that I slit to the top of my page layouts in photoshop to achieve the uneven array of images, and the small braces affect my image controls.   In short, I was wondering if it is possible to manually change the designation of the number to these images.   It is as much a concern for me as the problem stated in the previous paragraph, as I have no qualms about changing the color of the text in white and moving on in my life.

    Thank you in advance.  I find these forums useful and the outpouring of support is very encouraging.

    MS

    Displaying my actual website, transferred on Firefox and Safari on my computer, the big picture content appears exactly as it should.   However, when you check its appearance on two different computers IE, the bottom of the image, which includes the close button and the text of the "Image X of Y" appears to a width to the the rest of the box.   You can check the site in question here: http://www.mstefani.com/misc (click on an image to see the problem).   It is an eye sore for me (and potential employers), and it is probably the result of my lack of language html/css.   Any help to fix this would be greatly appreciated.

    The starting point for the QA check your website is to validate your site and fix the errors reported.

    http://validator.w3.org/Unicorn/

    http://Validator.w3.org/Unicorn/Check?ucn_uri=www.mstefani.com%2Fmisc&ucn_task=Conformance#.

    The most obvious problem reported by the validator is that your page contains no DOCTYPE on line 1.

    Always start all of your pages with a full DOCTYPE so that your page is displayed in what is called standard mode in modern browsers. This reduces to a minimum (but rarely eliminates all) the differences between browsers in accordance with modern standards.

    Starts with HTML 4.01 Transitional doctype or the HTML5 doctype.

    http://www.w3.org/QA/2002/04/valid-DTD-list.html

  • White image slideshow Spry tasks

    Hello

    I prepared my images in photoshop and built a slideshow of Spry image base (1.0) to insert in my page (s). Everything looks fine in the live preview, but when I test compatibility browser in IExplore, images have white spots in dark areas of the image, this does not happen in Chrome, the images appear correctly.

    I searched the help files and there is a solution in the Framework of Spry for Ajax, where it seems the problem is a bug of the opacity, relating to photo gallery, but I may be simple but I can't understand how to implement this in my spry code in the slide show.

    would really appreciate someones help on this one.

    Thank you, Dave.

    I suspect that there is some CSS in the CSS style sheet provided for the slideshow that throws a white background on an iframe (especially for IE browsers). Find the style selector that does this and make the background: transparent; instead of #ffffff.

    Beth

  • Setup error when loading Images - ora 22288

    Hi all

    I got an error during the installation of the APEX as below,

    Please help me rectift this...

    I use APEX on windows server 2003... and Oracle 10g XE

    ==========

    SQL > @apxldimg E:\From F - official files\Sakthi\Softwares\apex

    PL/SQL procedure successfully completed.

    old 1: create the directory APEX_IMAGES as '& images/apex/1 '.
    new 1: create the directory APEX_IMAGES as 'E:\From/apex/images '.

    Created directory.

    declare
    *
    ERROR on line 1:
    ORA-22288: file or LOB FILEOPEN operation failed
    The system does not have the specified path.
    ORA-06512: at "SYS." DBMS_LOB", line 523
    ORA-06512: at "SYS." XMLTYPE", line 287
    ORA-06512: at line 15 level



    PL/SQL procedure successfully completed.


    PL/SQL procedure successfully completed.


    Validation complete.

    calendar for: Load Images
    Elapsed time: 00:00:00.81

    Directory has fallen.

    ======

    Published by: madan on April 5, 2010 13:53

    Hello

    This might help
    Re: Upgrade problem Apex 2.1 to 3.2.1 in Oracle Database 10g Express Edition

    BR, Jari

  • Right-click on the image with link problem after upgrade to 11.0

    After the upgrade, whenever I do a right-click on an image with a link, it opens the link rather than opening a menu drop-down. Any idea on what is causing this behavior?

    OK, think about it. Extension: Tab Utilities was the origin of the problem. Uninstall completely solved the problem, disable it does not solve it.

  • Quality image 23EL933G HDMI problem

    Hello!

    I bought recently this TV, im really happy with the performance using VGA, DVB,... but when I plug my laptop using hdmi, image (resolution of 1920 x 1080) port is a bit "fuzzy", the definition is far from great.

    Is this normal? What I am doing wrong?

    Thank you!

    Have you tried to contact your laptop manufacturer and request explanations?

    Why do you think problem is TV? You have too much for Toshiba laptop?

  • VBAI - image acquisition misframe problem

    Hello

    I have a smart camera, NI C. 1776 when I tried to acquire the image, after 4 or 5 images, it ejects a weird picture half misframe. This will not suitable for imaging my self.

    I've attached a normal picture and a peak misframed to let the guys have a better version of this problem.

    Could someone help me on this?

    So thank you and I liked it.

    Normal image

    misframe photo

    You set the "Flip Horizontal" or "Vertical Flip" setting? What happens if you set it to the size of the image complete? If none of these made a difference, let us know how it works after the upgrade.

    Has confirmed that the video output shows the same image?

    I'll check with our support team, if they have heard of this before.

    Thank you

    Brad

Maybe you are looking for

  • Why 'write' appears 'send later' and the message is not sent

    When you write a message to the 'send' support 'send later' and when I click on tn that the message is not to send.How to force the program to immediately send my message?

  • M70 recovery CD - disk partitioning

    When updating from the laptop using the recovery CD, it gives you the ability to partition the hard drive? If this is not the case, do I have to re - install XP using a normal XP CD and then add the drivers from the CD of tools? In addition, the reco

  • Linux live CD on Satellite M70 and Driver Modem

    Hi I want to use Linux Live CD (or USB boot Linux) on 70 M satellite. I tried puppy linux, but it did not recognize my modem and the USB key (I use the dial upwards). I want to know if someone has used linux live CD on this PC and he was able to use

  • Outlook Express does not work. I get the error 0x800CCC0D

    Whenever I have try to use Outlook Express, I get the error 0x800CCC0D... .can someone help this Mom computer illiterate? Thank you

  • Windows XP Pro error 1603 Fatal error

    I tried to install a Kaiser Baas TVStick Netbook / usb device and received no "verified as compatible with XP" and asked if you want to continue and I did (I think shoot me?) then received a "feature transfer error message - error 1603 Fatal error" a