Edges around window

Hi,
I would like to remove edges (3D effect) around window (see attached picture). Is it possible?
Thanks,
Andrej
Solved!
Go to Solution.
Attachments:
test.png ‏4 KB

Hi Andrej,
I'd suggest using the Get Image Subset VI. This VI allows you to specify a bounding box to cut out from your image based on data specified within a cluster called 'Subset Rect' (Left, Top, Right, Bottom) which specifies the pixel co-ordinates of each corner of the selection region. The image is taken as Image Data; a String which can be generated when using the Read JPEG/Read PNG/Read BMP VIs.
Alex Thomas, University of Manchester School of EEE LabVIEW Ambassador (CLAD)

Similar Messages

  • Black "picture frame" around window

    A strange black "picture frame" shows up around windows which are active. Doesn't show up on Entourage. Appears like a non-damaging virus, but I don't know what it could be. Any ideas how to get rid of it?

    Hello teddyloop,
    And welcome to Apple Discussions!
    It looks like VoiceOver was activated. Head to *System Preferences -> Universal Access* and click on the Seeing tab and there is where you should be able to turn it off.
    B-rock

  • Jagged edges around inserted jpeg images

    Hi There
    I am using Adobe Acrobat Professional 8 in Windows 7 Professional 64 bit
    When producing pdf's using Adobe Acrobat Pro 8 with the setting on high quality the images produced have very jagged edges (Jaggies) especially around logo's & imported images, not so much on text.
    This has also been reflected in material that has come back from an external print job.
    I had this problem on my olf pc & believe the fix for this was located somewhere in the advanced section of properties menu but i have not been able to find it.
    Any help or suggestions would be greatly appreciated. 
    Thanks
    Darren

    It's best to try the smothing. In some cases with smothing on its too extreme and you go from Jaggies to Fuzzy looking Type. Sometimes so bad that its actually looks better with Jaggies, any thing below 8pt should not have font smoothing. In Acroabt it's all or nothing.

  • L2015tm Touch screen - cant swipe properly on the edges in Windows 8

    Hi all,
    I have a HP L2015tm touch screen running on Windows 8, all the Start gestures are done around the edges of the screen.
    As this is a normal style monitor with touch it has a thick edge around the actual screen so when you go to swipe in from the edge you dont cant activate any of the gestures.
    Even with a stylus it doesnt seem to registry the gesture.
    Moving the mouse to the bottom left will bring up the start. but if you touch the bottom left it does not register.
    I have tried using the built in windows touch calibration, after doing that the left and right side works a little better but still not very good.
    Dragging from the top down to close an app does not register at all.
    Does anyone else have this issue? or have any ideas?
    The only other info I can find is on the Acer site, which a monitor had the same issue and Acer released a firmware for the screen that fixed it.
    Thanks

    I am also having touch screen issues the swipe does not work from the left or right and I am not finding any answers.  I am aware we have a custom built video driver for the envy ultrabook touch and it blue screens the computer if you attempt to change the video driver.  Even after several calls to hp al i get is dont change any drivers unless you go through the hp support link.  I am a computer tech by trade and the lack of drivers are really exausting on my model of laptop.  If we upgrade to 8.1 it blue screens it to so I am stuck with these issues any ideas because I have even had my boss look at this thing and we still have not solution that dosent seem to turn it into a paper weight. 

  • Black lines appearing around windows and on screen in Pro 9.3.1

    I have just installed the update for Acrobat Pro 9.3.1 and now am getting random black keylines around any windows open on my Mac. It does not matter which application, they are appearing on everything. They also show up on the screen when randomly when clicking around the windows.
    I have a Mac Pro 3,1 running OS X 10.5.8. Has anyone any ideas as they are very annoying?! Thanks

    Today, 3/31/2008, we received a "patch" from Oracle/Hyperion support that consisted of 3 SQL scripts to apply to the BI+ repository. After applying the folder permissions are now able to be set along with the objects in the folders. We found we lost provisioning for MSAD groups to the reporting ans analysis applications (workspace), but not sure if this happened because of not shutting down all the services including Shared Services. Since this was a dev environment, not a problem, but in our production environment we will ensure a complete listing of the provisioning before applying. Awaiting word from support about the provisioning issue.
    There is an open bug report from a different client and apparently this is fixed in 9.5.

  • Qn: Getting Around Windows File Lockup Property -- use FileHandling in Java

    I am encountering a problem in developing a software for my business. The task I am trying to achieve is that, I need to update a file (.txt) while that file is being constantly accessed by another program.
    The ultimate setting is this: I will have a software running, constantly reading the content of a feed file (call it info.txt). I have another script running, constantly updating the feed file (info.txt).
    I realized the serious conflict in using the file after I implemented the above setting. With the software (call it AAA) running, I can't make an edit to info.txt even manually. I open up info.txt, make a change, and click save, windows return an error message: "The process cannot access the file because it is being used by another process." If I try to delete info.txt, the error message is "the action can't be completed because the file is open in AAA.exe".
    When I run my (java) script that constantly updates info.txt, the file IO exception is:
    java.io.FileNotFoundException: info.txt (The process cannot access the file because it is being used by another process)
    The software AAA is not that well developped. (It's a foreign software to my enterpise so I can't modify its behavior/source code.) The way it is accessing files locks up the file completely. I thought of temperarily pointing away the reference to info.txt in the software's profile files to allow a temparory edit, but this approach would fail because with AAA running (and I need it to), I can't make any change to any file it's using.
    I consulted one of the main developer of software AAA. He acknowledges this is a problem right now, he would improve it in next release. But meanwhile I would like the set up to work. He told me he programs with .NET, and he provided a line that could help me to get around my problem:
    FileStream fs = new FileStream(@"info.txt", FileMode.OpenOrCreate, FileAccess.Write, FileShare.ReadWrite);
    Supposedly, by supplying these arguments, this filestream are allowed to be shared on both writes and reads.
    I am a java programmer, and I've had no experience with .NET. However I did some research and learning, I realized his code is the syntex of C#, which runs in the CLR of .NET framework. I set up C# on my computer and studied some C# beginer tutorial, and comes up with the following script, hoping to solve my problem.
    If it's really true that C# allows to change the access property of a file at a fundamental level, I would open up the filestream of info.txt, allowing it to be shared with both read and write. Once I do that, I can run my script of updating info.txt, and then run the software AAA that keeps refreshing info.txt.
    Trying to achieve the above implementation, I come up with a C# script:
    ================================================
    using System;
    using System.IO;
    class CopyFeed
    static void Main()
    string fileName1 = "info.txt";
    string fileName2 = "info2.txt";
    FileStream fs = new FileStream(@fileName1, FileMode.OpenOrCreate, FileAccess.Write, FileShare.ReadWrite);
    StreamWriter sw = null;
    // attempting to unlock part of the file, didn't work
    string contents = File.ReadAllText(@fileName2);
    fs.Unlock(0, contents.Length * 2);
    while (true)
    Console.WriteLine("Copying Feed...");
    string contents = File.ReadAllText(@fileName2);
    try
    sw = new StreamWriter(fs);
    sw.Write(contents);
    catch (Exception e)
    Console.WriteLine("CopyFeed :: " + e.Message);
    finally
    if (sw != null)
    sw.Flush();
    //sw.Close();
    Console.WriteLine("Pausing For 2 sec...");
    System.Threading.Thread.Sleep(2000);
    ================================================
    Supposedly, I will have my java script constantly updating info2.txt . Then I will have this C# script constantly copying the entire content of info2.txt into info.txt.
    (The above script is still buggy, because all it does is keep appending to the file info.txt. I need to find a way that I can clear the content of file at the start of every iteration and just copy over the content of file2. Right now if I execute the script, it will create a infinitely large file as time goes.)
    I wish to seek help with this post:
    Based on the description above, could I find a solution using Java? does Java have file handling capability that interacts with Windows system in a more fundamental level and unlocks the file? Or does any 1 have any better suggestions?
    I've been working on this problem for the past few days and am really stuck. I would sincerely thank any one who offers any insight!

    Good news for you--people have spent billions of dollars on research, in part, to solve those problems!
    The solution is: use a database.

  • Apple 23" Cinema Display - lines around windows

    I have the Apple 23" cinema display and now I'm seeing "ghost lines" around open windows on the desktop, and also along the sides of application windows, like Safari. What is causing this?

    having the same problem, you can see right through to other open windows ie. photoshop/acrobat documents. not very good when retouching images etc.

  • Bizarre lines around windows; strange screen problems

    My Macbook has been acting strange lately. I'm attaching a few images so you can see what's happening with my display. Sometimes, after I exit a program and return to the desktop, I get strange patches of white/gray boxes on the screen. Logging off and back in clears the boxes. Now I have vertical lines around all my open windows.
    Any ideas?
    http://twitpic.com/lrpuc
    http://twitpic.com/lrpm8
    http://twitpic.com/lmre7

    That doesn't sound good. Run the hardware test that came with your computer:
    http://docs.info.apple.com/article.html?artnum=303081
    If nothing appears there, do you have any software that modifies the operating system that you aren't sure has been tested with the operating system release you have? When specs call for 10.5.x and higher, they do not mean 10.6.0, 10.6.1, or 10.5.2 through 10.5.8.

  • Motion Tracking - Match Move, getting messy edges around superimposed video

    (Motion 3.0.2)
    I'm using the "Match Motion" menu option under "Motion Tracking" - "Add Behavior" to superimpose a video over a flat screen in the shot. This is working great except for one issue. Around the edges of the super imposed video there is a flickering light that persists. NOTE: The flat screen does display a basic white graphic on it and initially it seemed as though this was leaking through. However, I'm not convinced this is the case as I've stretched the four corners well beyond the underlying white screen and the problem persists.
    Pretty sure I went through the proper steps, i.e analyze etc. and the superimposed video does play fine, just the edges are not very clean.
    Any feedback would be appreciated.

    Thanks, I did set the "Render" to "Best", hit Analyze again, saved the file, went back to my FCP project which contained the file/clip, had to render again.....but got the same results, might be a touch improved, can't really tell. Maybe I'll start over and just cover the entire flat screen tv w/ the video to ensure that none of the white image from the tv seeps around the edges??

  • Black box around window screenshots?

    Hi guys,
    I'm using 10.6.2 SL and whenever I take a screenshot of a window with Shift Apple 4 Space, I get this ugly black box around the window.
    Here is an example.
    Before, the screenshot would have a nice shadow. It used to look like this.
    Was this intentional? Or is this a glitch?
    Thanks
    Sohrob

    That behavior's abnormal. Start with a search for *screenshot black border* and peruse the hits. If no luck, create a new admin user account, log into it, and see if the problem persists.

  • Black line around window in Mail

    A mysterious black line (box) has appeared around the window in Mail. I can click and drag this box but have no idea how to get rid of it. If I click on it, it actually closes the window. Dragging it re-sizes the box. How do I restore back to "normal" mode please?

    Dunno why clicking it closes the window, but try pressing command-F5 to turn off VoiceOver.

  • Black frame around windows

    Hi all,
    recently upgraded to SL. And, from time to time, I have black frames around my windows where the shadow should be viewable.
    Anyone else having this problem?

    PartisanEntity wrote:
    I was able to narrow down the issue, these weird black frames only appear when or after I have used an application that requires 3d graphics, such as Maya.
    Sounds like your system can't keep up with the rendering required...try to run Maya alone, right after a reboot and be sure to have sufficient free space on the HD.

  • Black Edges Around Scaled Smart Objects

    Hey folks,
    I've checked around and haven't really found a good solution for this, hoping somebody can help me out.  I have a smart object with transparency that looks great at 100%, as soon as I scale it down I start getting black lines around the edges and a "bevel and emboss" type effect around the edges.  I DON'T want to scale down the contents of the smart object, that's the whole point of the smart object, to retain resolution.  The "anti-alias" checkbox in the transform panel is disabled and can't be checked.  I'm using Photoshop CC 2015.   Please help as this has been driving me nuts for months.  Thanks!

    You are correct. I tried this in CS6, and the drop shadow causes the downscale algorithm to add an ugly dark border. I tried changing the image interpolation in the General options, but that has seemingly no effect at all.
    Under circumstances it looks quite terrible, and the result becomes unusable for serious work. The only way to circumvent this is to remove the drop shadow in the SO, and apply the effect instead on the SO itself.
    *edit* Out of curiosity, I also tested this in Photoline with cloned instanced layers (comparable to a SO in Photoshop), and there are no issues.

  • 2nd monitor through mini-dvi to dvi gives wierd tinge around window

    My Samsung monitor, which before using with my new Mac, produced a beautiful picture. Now that I just hooked it up with the mini-dvi to dvi toggle, any window that shows up on the Samsung has this sort of wierd glow,tinge surrounding the whole window. Like an aura. I tried to tweak the profile ,brightness etc to no avail. I think the toggle I bought was from Belkin )looked exactly the same and much less expensive than the Apple product).I doubt it that is the culprit. Anything that I can do to get a crisp and true reproduction of whatever I might place on that matter? Settings that I should look at? Or should I , in general be not expecting anything so great by using the second monitor. Thanks
    Message was edited by: Stoker

    My apologies,,the product is Dynex http://www.futureshop.ca/catalog/proddetail.asp?logon=&langid=EN&sku_id=0665000F S10090979&catid=25607
    and it is slightly under Apples price (Don't know why salesman gave me somce ridiculous $40 plus price!, Wait a minute,,I just went to the same site and it mentions a price of $52 !! http://www.futureshop.ca/catalog/proddetail.asp?logon=&langid=EN&sku_id=0665000F S10084484&catid=12503 are they nuts?

  • Intermittent black border around windows

    I've noticed this fault, as have others in relation to a graphics problem that seems to crop up after the machine comes out of sleep.
    http://homepage.mac.com/douglasm/.Pictures/frame.jpg
    Shows an example of the fault. This isn't the Voice over box, and seems to be a graphics handling issue, relating to shadowing of some windows. I have noticed inconsistency in how it works. Some OSX system boxes open and don't exibit the fault, whilst applications and folders seem to suffer. Is it possible to turn off window shadowing to test a theory ?
    Joules

    Same issue here ... and it is also covered in thread:
    http://discussions.apple.com/thread.jspa?threadID=394694&tstart=0
    Hopefully Apple can get a new driver sorted out ASAP, as it is really annoying as the only way to fix it is restart.

Maybe you are looking for

  • Set or Change Device Name in Profile Manager

    Hello, Is it possible to set or change the device name of an enrolled device using profile manager? I notice WGMs old 'Set computer name to computer record name' is still there under Login Window options, but I couldn't find away to actually change t

  • CS6 default image import is different than CS5

    The default image import option for CS5 was "Crop" now with CS6 it's "Bounding Box" Any ideas on how to change the default so I don't have to keep using the dialogue box? Thanks

  • Crosstab - Data point (aggr & non-aggr items) problem

    Dear Gurus, I need your experice on this plz !! ( I am new to Discoverer) I need to create one crosstab report which should display on the left side: (country) , on the Topside: (Operator) And on the Data point: Rate_per_Min, (Sum (Duration_Min)),(Su

  • Dequeue_time ignored in RAC environment

    Hi, has anybody seen the behaviour, that dequeue_time is ignored, if one node is powered down? It works, if all nodes are up.

  • How to shrink document size to 20%(inculd all pageitems size shrink to 20%)?

    I exproted  xxx.indd to yyy.jep, then I found yyy.jep size is too big, almost have shrink to 20% to need my client requirement. There is no any method allow to change JPG file szie while exproting. the documnet size change only for PageHight and Page