Can't use threshold on live traced placed tiff image

I can't use the threshold controls on a tiff image that I placed and traced. I feel dumb.
Plus, I never learned how to reduce the resoolution on my projects...
Any takers?
Thanks!

A lote of sitesuse the Flash version of YourTube. no iOS devices support flash. The you have to either use the YourTube app or Safari to go to YouTube since Safari tells the YouTube site to use HTML5.
For other problems withwith Safari try going to Settins>Safari and clear Histor, Cookies and Data.
Also reset the iPod. Nothing is lost.
Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
least ten seconds, until the Apple logo appears.

Similar Messages

  • I recently upgraded my Mac to Yosemite and I can't use the custom function (grayed out) in Image Trace Illustrator CS6 (physical version). Anyone else having this issue?

    I recently upgraded my Mac to Yosemite and I can't use the custom function (grayed out) in Image Trace Illustrator CS6 (physical version). Anyone else having this issue?

    Custom will show automatically as soon as you just edit some options. So just go ahead, you don't need to select "custom"

  • How can I use IMGPLOT to display a 12-bit image in false color?

    I want to use IMGPLOT to display a 12-bit image in false color employing VC++ 7.0 . Actually it is stilla grey level. The only difference is to customize a new palette. I guess Ni should have a API for me change the palette. I donot want to convert my image into color image since its processing speed is slow.
    Any people has the silimar experience to do this?
    Thanks a lot in advance!
    zmt

    Hi Bruce Ammons,
    Thank you very much for your answer. I still need your clear instruction.
    I can directly display 12 bit image in 256 grey level just using IMGPLOT function without any mapping operation. That is because IMGPLOT directly supports to draw a 12 bit image through IMGPLOT_MONO_12 flag.
    IMGPLOT prototype is imgPlot(GUIHNDL window, void* buffer, uInt32 leftBufOffset, uInt32 topBufOffset, uInt32 xsize, uInt32 ysize, uInt32 xpos, uInt32 ypos, uInt32 flags=IMGPLOT_MONO_12 ).
    Hence I just need a C++ function to change the palette. I believe that IMGPLOT automatically does the 12bit to 8 bit mapping for me. What I need to do is just to change the palette. The question is which NI'S API can change the palette and work well with IMGPLOT. Or I have
    to use IMGPLOTDC and change the palette in the selected DC by myself.
    Your great help is much appreicated!
    zmt

  • I need use the line data(basle​r spl2048 camera,NI1​433 board) to perform FFT transform ,how can i use transforme​d data to construct an image

    hello everyone! as what i haved mentioned in the title.In optical coherence tomography system ,i need to perform for every line data whick accquired by NI1433,how can i use
    the transformed data tto construct an depth image .

    This is no longer my main area of expertise, but here is results of brief search:
    Spectral Domain Optical Coherence Tomography System Design: sensitivity fall-off and processing speed enhancement
    look at Chapter 5
    https://circle.ubc.ca/bitstream/id/91474/ubc_2010_​fall_chan_kenny.pdf
    Ultrahigh-resolution, high-speed, Fourier
    domain optical coherence tomography and
    methods for dispersion compensation
    http://www.opticsinfobase.org/oe/abstract.cfm?uri=​OE-12-11-2404
    hope this helps,
    Curt
    Curt Corum, Ph.D.
    Center for Magnetic Resonance Research
    University of Minnesota

  • Using binarize... Getting Tiff Image in Black Background..

    Hi,
    Basically my subject summarizes my problem, but I am trying to write some text to a blank JPEG file and then create a Tiff file from that JPEG...
    But When i use the binarize i am getting the image as black background and the resolution is not that great...
    I am using binarize, because i need to use TIFFEncodeParam.COMPRESSION_GROUP4 but i was getting bi-level error, that is why i am using binarize to create a GROUP4 with black and white color to minimize the file size...
    I am posting the source code, i would appreciate someone can take a look at this code and figure out why i am getting black background...in the tiff file...
    Any help will be greatly appreciated...
    Thanks in advance...
    ========================================
    import javax.swing.UIManager;
    import java.awt.*;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Application1 {
    private boolean packFrame = false;
    //Construct the application
    public Application1() {
    Frame1 frame = new Frame1();
    frame.setVisible(true);
    //Main method
    public static void main(String[] args) {
    new Application1();
    ================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import com.borland.jbcl.layout.*;
    import com.sun.image.codec.jpeg.*;
    import com.sun.media.jai.codec.*;
    import javax.media.jai.*;
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.awt.image.DataBuffer;
    import java.awt.geom.GeneralPath;
    import java.io.*;
    import java.awt.image.renderable.ParameterBlock;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Frame1 extends JFrame implements java.io.Serializable {
    private JPanel contentPane;
    private JButton jButton1 = new JButton();
    public static final String DEFAULT_FILE = "blank.jpg";
    private static RenderedImage img;
    //Construct the frame
    public Frame1() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    //Component initialization
    private void jbInit() throws Exception {
    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
    contentPane = (JPanel) this.getContentPane();
    jButton1.setBounds(new Rectangle(125, 87, 79, 27));
    jButton1.setText("jButton1");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton1_actionPerformed(e);
    contentPane.setLayout(null);
    this.setSize(new Dimension(400, 300));
    this.setTitle("Frame Title");
    contentPane.add(jButton1, null);
    //Overridden so we can exit when window is closed
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    void jButton1_actionPerformed(ActionEvent e) {
    String fileName = DEFAULT_FILE;
    // Read the image from the designated path.
    System.out.println("load image from '" + fileName+"'");
    PlanarImage src = JAI.create("fileload", fileName);
    // Generate a histogram...
    Histogram histogram = (Histogram)JAI.create("histogram", src).getProperty("histogram");
    // Get a threshold equal to the median..
    double[] threshold = histogram.getPTileThreshold(0.5);
    PlanarImage dst = JAI.create("binarize", src, new Double(threshold[0]));
    BufferedImage bi = dst.getAsBufferedImage();
    Graphics2D big = bi.createGraphics();
    Graphics2D g2 = bi.createGraphics();
    big.setFont(new Font("Dialog", Font.PLAIN, 20));
    big.setColor(Color.black);
    big.drawString("Data/Time Created:" + new java.util.Date(), 80, 210);
    big.drawString("POLICY NUMBER: 1711215 NAME OF CALLER: BENEFICIARY", 80, 230);
    big.drawString("Requested: Loan Request XXXXXXXXXXXXXXXXXXXXXXXXXXXXX Current Loan Value: $0.00", 80, 270);
    g2.drawImage(bi, 0, 0, null);
    try {
    File file = new File("test.tiff");
    FileOutputStream out = new FileOutputStream(file);
    TIFFEncodeParam params = new TIFFEncodeParam();
    params.setCompression(TIFFEncodeParam.COMPRESSION_GROUP4);
    ImageEncoder encoder = ImageCodec.createImageEncoder("TIFF",out, params);
    if(encoder == null) {
    System.out.println("imageEncoder is null");
    System.exit(0);
    encoder.encode(bi);
    System.out.println("DONE!!!");
    catch (Exception ex) {

    try this:
    BufferedImage bi = new BufferedImage(1728,500,BufferedImage.TYPE_BYTE_BINARY);
    Graphics2D big = bi.createGraphics();
    Graphics2D g2 = bi.createGraphics();
    big.setFont(new Font("Dialog", Font.PLAIN, 20));
    big.setColor(Color.WHITE);
    big.fillRect(0,0,1728,500);
    big.setColor(Color.BLACK);
    big.drawString("Data/Time Created:" + new java.util.Date(), 80, 210);
    big.drawString("POLICY NUMBER: 1711215 NAME OF CALLER: BENEFICIARY", 80, 230);
    big.drawString("Requested: Loan Request XXXXXXXXXXXXXXXXXXXXXXXXXXXXX Current Loan Value: $0.00", 80, 270);
    g2.drawImage(bi, 0, 0, null);

  • Problems with placing Tiff images in CS2

    When placing a Tiff image in CS2 the file crashes or a memory warning appears. I am able to place much larger EPS images, so image size is not necessarily a factor Saving the file as an EPS in PhotoShop is not a solution as I am placing GeoTiffs which must retain their geographic reference file. The OS is Windows XP 32 - a quad core proc. - Radeon HD 6350 graphics controller with 512mb (dedicated)

    No - it is possible to place a geotiff in illustrator - I have been able to do it. However, now I have a new PC and am unable to place the same types of tiff images I previously was able to in an older PC.

  • How can i use the webcamera Live! Ultra with Msn mesenger?

    hello i need to use this camera with msn messenger but is says that i cn only use it with yahoo msn , but on the box says that i can use it also with msn mesenger i need help fast !
    thx

    oh good noone replies this forums are said to answer questions? LOL i have been w8ing week .. noone replies im returning the cam to the shop..

  • Can I use with WD Live TV

    How can I control and display ITunes content in my WD Live TV ?
    Thanks.

    Hi
    Found this specification sheet from Toshiba:
    http://www.toshiba-multimedia.com/Global/Manuals/Store/Datasheet/DATASHEET_STORE-TVplus.pdf
    +With STOR.E TV plus , you can easily playback your fi les from its internal hard disc drive or by streaming them from a computer or other external storage device over your home LAN or via an optional Wi-Fi USB dongle.+
    Found an USB WiFi dongle from Toshiba
    *Toshiba WLM-20U2*
    It supports IEEE 802.11a, IEEE 802.11b, IEEE 802.11g, IEEE 802.11n and the supported encryption WEP (64 Bit), WEP (128 Bit), TKIP, AES, WPA, WPA2
    Here you can find the official STOR.E TV+ page with links to the user manual and datasheet too.
    http://www.toshiba-multimedia.com/eu/store-external-hard-drives/tv-plus/

  • Can I use ipad as mobile my placing idea sim

    <Edited by Host>

    No.  The iPad has no mobile telephone capability.
    It only uses cellular connection to access the internet. There is no access to the Cellular Voice and Text service from the carrier.

  • Can i use an old iPhoto library for referenced images?

    I upgraded to Mavericks today (from Snow Leopard) and want to find a way to continue to view + edit images from my old iPhoto library.
    My version of iPhoto is 8.1.2, and is 390GB.  I have also been using Aperture for some time, and now have 3.5.1.  The Aperture library is 71GB of Managed Images.
    I have several backups of the iPhoto library of external disks.  Can I set things up so that the images can be accessed by Aperture as Referenced Images'?
    And if so, will the iPhoto structure (events, folders etc) be retained?

    It's achieveable, but somewhat of a hack, and the best you'll get is something close to your event structure, but not albums.
    I'd really recommend lêonie's approach above.
    However, if you really want to play...:
    There are two main problems to solve.
    1) The files are inside the iPhoto library bundle which is not selectable from the import panel.
    2) You'll have a combination of master, non-destructive edits, and previews. I no longer have an 8.1 library to check so I can't decribe the structure). You'll need to decide if you want to bring in originals and edits (where available).
    You'll need to have a look around the iPhoto library structure; navigate to it in finder, right-click the library and choose 'Show package contents'.
    Explore this until you are happy you know where the images are stored (orginals and edited copies), these are the images you can access directly.
    To make them accessible for import in Aperture, drag any folders your are interested in (eg: originals, masters, previews, etc) to your finder favourites sidebar. This doesn't move them anywhere, it just gives you shortcuts to those folders that reside inside the iPhoto library bundle.
    In Aperture, use 'Import->Folders as Projects' from the file menu. Here you can specify that the images stay in their original location (imported as referenced) and you can use the shortcut on your finder sidebar (created above) to navigate into the iPhoto library to pick up the images.
    You can try the different options for the stucture of the import ('Folders and Projects' or 'Projects and Albums'). 'Folders and Projects' will probably work best as it will give something approximating your import history which may match your event structure, but the project names will likely not match the event names.
    Once you've got them in Aperture, youll probably need to tidy up the structure, but in Aperture you can move and change projects as much as you want withouth affecting anything in the old iPhoto Library. The things that can impact the iPhoto Library are deleting or relocating any of the masters.
    As I say, it's a bit of a hack, and in the long run you will probably be better off by just importing the library and relocating the masters. This will keep your event and album structure and be much cleaner, but it will give you an additional copy of the images, which I suspect is what you are trying to avoid.
    Also, if you get future problems with your images, you'll have to explain all the above or people may have trouble helping you!
    Andy

  • I can't use iphoto when i want to insert image from word

    i've just upgraded iphoto6 to 08 yesterday and i can't anymore now, using word access the iphoto library which is not bold and so inacessible.
    do you know what i should do, thanks a lot in advance.

    hubertmarie
    Welcome to the Apple Discussions.
    Have you tried drag and drop from the iPhoto Window to your Word dowcument?
    There are three ways (at least) to get files from the iPhoto Window.
    1. Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. Show File: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. If you're willing to risk database corruption, you can restore the older functionality simply by right clicking on the iPhoto Library and choosing 'Show Package Contents'. Then simply make an alias to the folders you require and put that alias on the desktop or where ever you want it. Be aware though, that this is a hack and not supported by Apple.
    Regards
    TD

  • How can I use a JPEG file as a background image for my vi in 8.5

    Im working on a vi that I plan on using as part of an alarm system.  I would like to use a JPEG file of my house as a background image for the vi, or possibly to just be displayed in a window on the control panel.  I have seen people use their own images before, but never looked at what this involved.
    Im trying to use the "read JPEG file" vi and the "draw flattened pixmap" vi to accomplish this.  The vi does run, but nothing shows on the front panel.  If I try to create an indicator from the "new picture" output of the "draw flattened pixmap" vi, I get an empty white window on the front panel.
    Any advice?
    Thanks
    Solved!
    Go to Solution.

    Guruthilak wrote:
    the earlier vi (using the JPEG) works fine. just increase the size of the picture control
    I figured this was the problem. And to the OP, I'm glad a bitmap worked, but no I didn't mean use any sort of LabVIEW programming at all. I meant open your image in Microsoft Paint, Press ctrl+A to select the whole thing. Then copy the image to the clipboard. Now select your front panel and press ctrl + v to paste it. No programming needed and the image is there. However, if you want to programmatically change it, you will need a picture control.
    CLA, LabVIEW Versions 2010-2013

  • Can you use a swf file like a background image

    The header has a css background image and the spry menu bar
    lays over it. Is it possible to attach a swf file as the background
    image in css or even in html?
    Maybe as a background-attachment somehow? Or simply in the
    html code?
    I am using CS4 but I believe the website was created with
    CS2.

    I don't know anyone, that knows what they are doing, that uses flash for websites anymore
    There are a few holdover gaming sites that still use it, but even those guys are making the move to JavaScript, HTML5 and CSS3.  
    @bretC,
    There are far too many people using mobile & tablet devices that don't support Flash (iOS, Android, Blackberry, etc...)  It's not good business to ignore those people.
    In terms of alternative technologies, look at HTML5, CSS3 and JavaScript animations made with Edge Animate.  These are well supported on all modern devices.  Edge Animate is part of the Creative Cloud plan.  Products | Edge Animate | Adobe TV
    Nancy O.

  • Numbers dropping placed TIFF images

    I have a few versions of our company logo placed on various sheets in our master Estimate template. Frequently, when I create a new file from this template (or a copy of one that I've set up as a master for a particular ongoing client) I find that the images are missing and I have to re-insert them. This does not seem to happen every time, but quite often.
    Does anyone know why this might be happening and how to prevent it? Thanks!

    Good.
    If you prefer to keep your image linked you can of course replace the embedded image with a fresh linked one while still making use of the clipping mask.

  • TS3274 Error message on ipad when we tried to download images to computer.  'Itunes has detected an ipad in recovery mode. You must restore your ipad before it can be used with iTunes.

    Error message on ipad when we tried to download images to computer.  'Itunes has detected an ipad in recovery mode. You must restore your ipad before it can be used with iTunes.  It downloaded some images prior to this message and we selected skip any files with errors.
    Ipad now just showing apple image with power cord.  Don't want to click restore and lose all data.

    Once the Device is asking to be Restored with iTunes... it is too late to save anything...
    To minimise loss... Connect to iTunes on the computer you Usually Sync with and Restore from the most recent Backup...
    http://support.apple.com/kb/HT1414
    Restore from Backup
    http://support.apple.com/kb/ht1766

Maybe you are looking for