Path: news.mathworks.com!not-for-mail
From: Dave Tarkowski <dtarkows@mathworks.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: how to remove an Image Acquisition Toolbox adaptor?
Date: Thu, 22 Oct 2009 09:16:30 -0400
Organization: The MathWorks, Inc.
Lines: 15
Message-ID: <hbplvf$ct7$2@fred.mathworks.com>
References: <hblhp4$n1m$1@fred.mathworks.com>
NNTP-Posting-Host: tarkowskid.dhcp.mathworks.com
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: fred.mathworks.com 1256217391 13223 172.31.57.165 (22 Oct 2009 13:16:31 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 22 Oct 2009 13:16:31 +0000 (UTC)
User-Agent: Thunderbird 2.0.0.23 (Windows/20090812)
In-Reply-To: <hblhp4$n1m$1@fred.mathworks.com>
Xref: news.mathworks.com comp.soft-sys.matlab:579304


Sean wrote:
> If I register an adaptor with the image acquisition toolbox, then I will not be able to register another adaptor with the same name. 
> 
> I am writing my own adaptor and I need to test it. I don't want to give a new name for the same adaptor everytime. So, how do I unstall an adaptor in Matlab?

When you register an adaptor, what you are really registering is the 
file location, so if you're just compiling a new version of the adaptor 
but keeping the location the same, you don't need to worry about 
re-registering it.

If really do want to unregister an adaptor, you can do the following:

 >> imaqregister('myadaptor.dll', 'unregister');

-Dave Tarkowski